Is this search page a good candidate for pairwise/allpairs testing?
I am learning the Combinatorial testing and wondering if the below search page is a good candidate开发者_开发百科 for pairwise or all pair testing. If it is then appreciate suggestions
- on various classes of values I can use for each of the applicable parameters.
- Should I include all the fields?
Thanks
It seems like a reasonable chose for the testing you want to do.
You could make life easy on yourself by making the numerical values integers and everything else strings. If you feel like getting fancy, you could use an enumerated type for the states and the consumer/customer radio. Otherwise use strings and a bool respectively.
If you are just testing it hardly seems necessary to include all the fields, just include as many as you need. Using all of the data could make for a more robust test, but that's really up to you.
精彩评论