Pairwise Testing Technique - Easy Solving
Introduction Pairwise or All pair testing technique is approach to test software using combinatorial method.It's a method to test all the possible discrete combinations of the parameters involved. This technique is an effective test case generation technique that is based on the observation that most faults are caused by interactions of at most two factors. Pairwise-generated test suites cover all combinations of two therefore are much smaller than exhaustive ones yet still very effective in finding defects. When to use Pairwise Test Method ? For example, consider the testing of a web application that has four features (factors) say OS, speed, browser types and anti-virus software and each of these factors has five values (options). In order to have a full coverage for the application, we need to test 5 x 5 x 5 x 5 = 625 combinations, which is not easily possible. We may test all these combinations, provided we have enough time and budget. However, what if we do not have eno...