Reverse test design

1, special characters. Especially in single quotes, may cause sql injection.

2, the verification required.

3, field type test. For example, the date format, if you enter an incorrect format how the program handles; if the input is 0, negative, or very large integers or decimals, how to handle the program.

4, the length of the field test. Enter the limit of 100 characters, enter more than 100 characters by copying and other means.

5, boundary value test. Only allowed within 100 integer input, what input 99,100,101 phenomenon occurs, we need to test.

6, for submission function. If the quick click whether there will be repeated submission.

2, the verification required.

3, field type test. For example, the date format, if you enter an incorrect format how the program handles; if the input is 0, negative, or very large integers or decimals, how to handle the program.

4, the length of the field test. Enter the limit of 100 characters, enter more than 100 characters by copying and other means.

5, boundary value test. Only allowed within 100 integer input, what input 99,100,101 phenomenon occurs, we need to test.

6, for submission function. If the quick click whether there will be repeated submission.

Guess you like

Origin www.cnblogs.com/LZHOO97/p/12081880.html