51Testing软件测试论坛 's Archiver
软件测试论坛
›
[软件测试新手上路]
› RTRT使用有关code coverage的问题
jarryandtom
发表于 2012-5-29 14:14:30
RTRT使用有关code coverage的问题
首先我一个C代码:
int fo2(int x)
{
//
int i;
for(i=0; i<10; i++)
{
//if(x>5)
// break;
//else
x+=i;
}
return x;
}
测试用例我有了3个,分别是fo2(-55), fo2(70), fo2(0). 可为为什么loops覆盖还是只有33.3%
请问这个loops覆盖如何理解。非常感谢。
ff
页:
[1]
查看完整版本:
RTRT使用有关code coverage的问题