邓松软件测试实验指导书(20140907采用)(19)
发布时间:2021-06-11
发布时间:2021-06-11
2)写单元测试代码
package cn.edu.gzhu;
import static org.junit.Assert.*; import org.junit.Test;
public class WordDealUtilTest { }
@Test
public void testWordFormat4DB() { }
String target = "employeeInfo";
String result = WordDealUtil.wordFormat4DB(target);
assertEquals("employee_info", result);
3)进一步完善测试用例
单元测试的范围要全面,如对边界值、正常值、错误值的测试。运用所学的测试用例的设计方法,如:等价类划分法、边界值分析法,对测试用例进行进一步完善。继续补充一些对特殊情况的测试:
//测试当首字母大写时的情况
@Test public void wordFormat4DBegin(){
String target = "EmployeeInfo"; //测试 null 时的处理情况
@Test public void wordFormat4DBNull(){ }
//测试空字符串的处理情况
@Test public void wordFormat4DBEmpty(){ }
String target = "";
String result = WordDealUtil.wordFormat4DB(target);
assertEquals("", result); String target = null;
String result = WordDealUtil.wordFormat4DB(target);
assertNull(result);
上一篇:中考考点之台湾与大陆的历史渊源