|
回复 #1 sh230u 的帖子
看了楼主的测试用例,我说说我的一点意见:
1、三角形三边都不能<1 or >200,只需取一条边做测试,没必要三条边都测吧?
2、同理,在测试两边之和小于等于第三边以及等腰三角形的输出时,只测一条边就够了;
3、《测试人员如何思考》中介绍过一个三角形生成程序,对边的输入数值位数做了很好的分类:
a.16 digits & up: loss of mathematical precision.
b.23 digits & up: can’t see all of the input.
c.310 digits & up: input not understood as a number.
d.1,000 digits & up: exponentially increasing freeze when navigating to the end of the field by pressing <END>.
e.23,829 digits & up: all text in field turns white.
f.2,400,000 digits: crash (reproducible). |
|