reference:
http://dev.yesky.com/275/2132275.shtml
1.在eclipse新建一個java project
2.新建一個class: hello, package = example, 代碼如下:
package example;
public class hello
{
public int abs(int n)
{
return n >= 0 ? n : (-n);
}
}
3.右鍵點擊hello.java,選擇:new - junit test case
setUp / tearDown打鉤, 最下方click here點擊,添加JUnit.jar文件 - next
4.選擇abs()方法
5.修改Hellotest代碼:
package example;
import junit.framework.TestCase;
public class helloTest extends TestCase
{
private hello _hello;
protected void setUp() throws Exception
{
super.setUp();
_hello = new hello();
}
protected void tearDown() throws Exception
{
super.tearDown();
}
public void testAbs()
{
assertEquals(_hello.abs(14), 14);
assertEquals(_hello.abs(-5), 5);
assertEquals(_hello.abs(0), 0);
}
}
6. 運行
posted on 2008-12-03 15:38
張辰 閱讀(132)
評論(0) 編輯 收藏