对于下面这段伪码,设计该段程序能达到100%分支覆盖率的最少用例数量为()
begin:
while(condition1)
statement1;
if(condition2) then
statement2;
end if;
end while;
end
1
2
3
4