Software Engineering Notes 4.22 (Boundary Value Design Method)

The second method of the black box test case The
Insert picture description here
Insert picture description here
Insert picture description here
Insert picture description here
Insert picture description here
Insert picture description here
Insert picture description here
Insert picture description here
Insert picture description here
program accepts 3 integers a, b, and c as input, which are used as the sides of the triangle. The integers a, b and c must meet the following conditions:
C1.1≤a≤200 C2.1≤b≤200 C3.1≤c≤200
C4. a<b + c C5. b<a + c C6. c<a + b
design test cases according to the boundary value.Insert picture description here
Insert picture description here
Insert picture description here
Insert picture description here

Guess you like

Origin blog.csdn.net/qq_43729554/article/details/105677552