首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 其他教程 > 开源软件 >

容易Junit测试代码

2012-07-27 
简单Junit测试代码package testpublic class jbulder {public int abs(int n){return n0 ? n: (-n)}pu

简单Junit测试代码
package test;

public class jbulder {
public int abs(int n){
return n>=0 ? n: (-n);
}

public static void main(String[] args){
}
}


package test;

import junit.framework.TestCase;

import org.junit.After;
import org.junit.Before;
import org.junit.Test;

public class JbulderTest extends TestCase{
private jbulder bulder;
@Before
public void setUp() throws Exception {
super.setUp();
bulder = new jbulder();
}
@After
public void tearDown() throws Exception {
super.tearDown();
}
@Test
public void testAbs() {
assertEquals(bulder.abs(14),14);
assertEquals(bulder.abs(-6),6);
assertEquals(bulder.abs(0),0);
}
}

热点排行