邓松软件测试实验指导书(20140907采用)(20)
发布时间:2021-06-11
发布时间:2021-06-11
}
String result = WordDealUtil.wordFormat4DB(target);
assertEquals("employee_info", result);
//测试当尾字母为大写时的情况
@Test public void wordFormat4DBEnd(){ }
//测试多个相连字母大写时的情况
@Test public void wordFormat4DBTogether(){ }
String target = "employeeAInfo";
String result = WordDealUtil.wordFormat4DB(target);
assertEquals("employee_a_info", result); String target = "employeeInfoA";
String result = WordDealUtil.wordFormat4DB(target);
assertEquals("employee_info_a", result);
4)查看分析运行结果,修改错误代码
再次运行测试。JUnit 运行界面提示我们有两个测试情况未通过测试(见图6),当首字母大写时得到的处理结果与预期的有偏差,造成测试失败(failure);而当测试对 null 的处理结果时,则直接抛出了异常——测试错误(error)。显然,被测试代码中并没有对首字母大写和 null 这两种特殊情况进行处理,修改如下:
//修改后的方法wordFormat4DB public static String wordFormat4DB(String name){ if(name == null){ return null; } Pattern p = pile("[A-Z]"); Matcher m = p.matcher(name); StringBuffer sb = new StringBuffer(); while(m.find()){ if(m.start() != 0) m.appendReplacement(sb, ("_"+m.group()).toLowerCase());
上一篇:中考考点之台湾与大陆的历史渊源