Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
以下要求的输入案例是什么(应涵盖边界值和等价类):
X 可以取 0 到 100 之间的值,其中 X 是有符号的 8 位整数。
在这种情况下,边界测试用例的输入值为-1、0、100、101。
如果 X 是无符号的,那么“等效类”边界测试用例应该有作为输入:0、100、101。
我不确定您是否要测试数字表示的边界,在本例中为 8 位。因此,您还应该测试有符号的 127 或 128 和无符号的 255。但这取决于有符号数字的表示。