|
Assume that you have a 10-character-wide ZIP code text box. What equivalence partitions would you create for this text box?
Key:
1.Valid 5-digit ZIP codes. Valid means that they're numeric digits, not that they are existing, in-use ZIP codes--although that could be another partition.
2.Valid 9-digit(9 digits with a dash) ZIP codes.
3.Short 5-digit. Have only 4 numbers, for example.
4.Short 9-digit. Have only 8 numbers, for example.
5.Long 5-digit. Have 8 digits without a dash, for example.
6.Long 9-digit. It maynot be possible to type in more than 9 digits and a dash, but you should try.
...
不知道这些划分是什么意思? |
|