zhgzgx 发表于 2008-5-22 16:39:33

MCDC测试

一个MCDC测试
if(A or B)and(C or D)then
some statement...
end if

能不能详细解释下这个测试的CASE啊

在线求助!谢谢!

tengmy 发表于 2008-6-2 16:39:26

不好意思
因为本人从事的基本都是黑盒测试,没有涉及到这个问题。只能给你分析一下
if(A or B)and(C or D)then
some statement...
end if

至少你要进行排列组合一下
1.if a and c
then
some statement...
end if
2.if b and c
then
some statement...
end if

3. if a,b and c
then
some statement...
end if
4....
这种组合条件下的,不过具体怎么做
页: [1]
查看完整版本: MCDC测试