Jump to content

All-pairs testing

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by Nmondal (talk | contribs) at 06:41, 23 December 2014 (→‎Rationale). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

In computer science, all-pairs testing or pairwise testing is a combinatorial method of software testing that, for each pair of input parameters to a system (typically, a software algorithm), tests all possible discrete combinations of those parameters. Using carefully chosen test vectors, this can be done much faster than an exhaustive search of all combinations of all parameters, by "parallelizing" the tests of parameter pairs.

Rationale

Assume that the test function[clarification needed] has parameters given in a set . The range of the parameters are given by . Let's assume that . We note that the all possible conditions that can be used is an exponentiation, while imagining that the code deals with the conditions taking only two pair at a time, might reduce the number of conditionals.

To demonstrate, suppose there are X,Y,Z parameters. We can use a Predicate_(mathematical_logic) of the form of order 3, which takes all 3 as input, or rather 3 different order 2 predicates of the form . Clearly can be written in an equivalent form of where comma denotes any combination. Thus, if the code is written as conditions taking "pairs" of parameters: then, we notice that the set of choices of ranges can be a multiset [clarification needed], because there can be multiple parameters having same number of choices.

Let's define as one of the maximum of the multiset . Then, the number of pair-wise test cases on this test function would be:-

Plainly that would mean, if the and then the number of tests is typically O(nm), where n and m are the number of possibilities for each of the two parameters with the most choices, and it can be quite a lot less than the exhaustive

For example:

Parameter Name Value 1 Value 2 Value 3 Value 4
Enabled True False * *
Choice Type 1 2 3 *
Category a b c d

In this case the parameters are Enabled with choices range of 2, Choice Type with 3, and Category with 4. That would mean: Hence, n = 4, m = 3 and number of tests would be 12. Notice that in this case, an exhaustive test would involve 2 x 3 x 4 = 24 tests, so in this example the number of tests is not reduced by much (see below for another example). The pict tool generated pairwise test cases on the input looks like:-

Enabled Choice Type Category
True 3 a
True 1 d
False 1 c
False 2 d
True 2 c
False 2 a
False 1 a
False 3 b
True 2 b
True 3 d
False 3 c
True 1 b

The below table would generate a multiset :

Parameter Name Value 1 Value 2 Value 3 Value 4
Enabled True False * *
Choice Type 1 2 3 4
Category a b c d

In this case the parameters are Enabled with choices range of 2, Choice Type with 4, and Category with 4. That would mean:- and it is a multiset. Hence, n = 4, m = 4 and number of tests would be 16, which are shown in the below table:-

Enabled Choice Type Category
True 3 b
False 3 d
True 2 a
True 1 c
False 4 b
False 1 a
False 2 b
True 4 d
True 4 a
True 2 d
False 4 c
False 1 b
True 2 c
False 1 d
False 3 a
True 3 c

The reasoning behind all-pairs testing is this: the simplest bugs in a program are generally triggered by a single input parameter. The next simplest category of bugs consists of those dependent on interactions between pairs of parameters, which can be caught with all-pairs testing.[1] Bugs involving interactions between three or more parameters are progressively less common,[2] while at the same time being progressively more expensive to find by exhaustive testing, which has as its limit the exhaustive testing of all possible inputs.[3]

This can be further generalized.[citation needed] The idea is to apply sorting to the set so that gets ordered too. Let the sorted set be a tuple :-

Now we can take the set and call it the pairwise testing. Generalizing further we can take the set and call it the 3-wise testing. Eventually, we can say T-wise testing.

The N-wise testing then would just be, all possible combinations from the above formula.

One of the main strengths of combinatorial technique is that it enables a significant reduction of the number of test cases without compromising functional coverage.[4] Many testing methods regard all-pairs testing of a system or subsystem as a reasonable cost-benefit compromise between often computationally infeasible higher-order combinatorial testing methods, and less exhaustive methods which fail to exercise all possible pairs of parameters. For example, consider the case of N=10 binary parameters. An exhaustive set of tests involves tests, whereas the all-pair setting would involve just 6.

Notes

  1. ^ Black, Rex (2007). Pragmatic Software Testing: Becoming an Effective and Efficient Test Professional. New York: Wiley. p. 240. ISBN 978-0-470-12790-2.
  2. ^ D.R. Kuhn, D.R. Wallace, A.J. Gallo, Jr. (June 2004). "Software Fault Interactions and Implications for Software Testing" (PDF). IEEE Trans. on Software Engineering. 30 (6).{{cite journal}}: CS1 maint: multiple names: authors list (link)
  3. ^ Practical Combinatorial Testing. SP 800-142 (PDF) (Report). Natl. Inst. of Standards and Technology. 2010.
  4. ^ "IEEE 12. Proceedings from the 5th International Conference on Software Testing and Validation (ICST). Software Competence Center Hagenberg. "Test Design: Lessons Learned and Practical Implications".

See also