Open In App

Pairwise Software Testing

Pairwise Testing is a type of software testing in which permutation and combination method is used to test the software. Pairwise testing is used to test all the possible discrete combinations of the parameters involved.

Pairwise testing is a P&C based method, in which to test a system or an application, for each pair of input parameters of a system, all possible discrete combinations of the parameters are tested. By using the conventional or exhaustive testing approach it may be hard to test the system but by using the permutation and combination method it can be easily done.



Example:
Suppose there is a software to be tested which has 20 inputs and 20 possible settings for each input so in that case there are total 20^20 possible inputs to be tested. Therefore in this case, exhaustive testing is impossible even all combinations are tried to be tested.

Graphical Representation of Pairwise Testing:





Generalized form of Pairwise Testing:
The generalized form of pairwise testing is N-wise testing. Basically sorting is applied to the set,

X = n{i}, 
so that P = P{i} gets ordered too. 

Let the sorted set be a N tuple:

P{s} = { P{i} } ;  i  |R(P{i})| < |R(P{j})|
Now take the set X(2) = { P{N-1}, P{N-2} } 

And call it the pairwise testing. Generalizing further take the set

X(3) = { P{N-1}, P{N-2}, P{N-3} }

And call it the 3-wise testing. Similarly, we can say,

X(K) = { P{N-1}, P{N-2}, ..., P{N-K} } 

K-wise testing.
The N-wise testing is all possible combinations from the above formula.

Advantages of Pairwise Testing:
The advantages of pairwise testing are:

Disadvantages of Pairwise Testing:
The disadvantages of pairwise testing are:

Article Tags :