public class Calculator
{
public int add(int a, int b)
{
return a + b;
}
}
被测试类源代码作者: sbeeqnui1987 时间: 2012-6-15 21:20
1. 测试方法必须使用注解 org.junit.Test 修饰。
2. 测试方法必须使用 public void 修饰,而且不能带有任何参数。[code=java] @Test
public void wordFormat4DBegin(){
String target = "EmployeeInfo";
String result = WordDealUtil.wordFormat4DB(target);
assertEquals("employee_info", result);
}[/code]