软件测试之单元测试技能篇[3] 单元测试代码
四、实例:
下例演示了如何测试类NEListTable的ShowNETable()方法。其中注意的是,方法中调用了类QueryCtrl的queryNEList()方法。
待测类:
publicclass NEListTable
{
QueryCtrl ctrl = null;
publicvoid ShowNETable()
{
List neList = ctrl.queryNEList();
for(int i = 0; i
{
//将neList转换为表格行
}
//显示表格...
}
}
publicclass QueryCtrl {
public List queryNEList()
{
returnnull;
}
}
测试类:
public class TestNEListTable extends TestCase
延伸阅读
文章来源于领测软件测试网 https://www.ltesting.net/