Google
 
   
Login
Username:

Password:


Lost Password?

Register now!
Search
Main Menu
top books
Polls
What do you think about php-deluxe.net?
Excellent!
Cool
Hmm..not bad
What the hell is this?
encyclopedia
recommendation
compare webbrowser
Freenet DSL
Who's Online
3 user(s) are online (1 user(s) are browsing encyclopedia)

Members: 0
Guests: 3

more...
browser tip
Unix Befehle
manual of unix befehle
recommendation!
Sponsored
partner

All-pairs testing

All-pairs testing or pairwise testing is a combinatorial testing method 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. 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.

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. Bugs involving interactions between three or more parameters are progressively less common, whilst 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. 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. Because all-pairs testing does not guarantee to find all bugs, it is typically used together with other quality assurance techniques such as unit testing, symbolic execution, fuzz testing, and code review.

= See also =

  • software testing
  • = External links =

  • [http://www.public.asu.edu/~rturban/pubList.htm Covering arrays for pairwise testing]
  • [http://www.developsense.com/testing/PairwiseTesting.html Pairwise testing]
  • [http://www.mcdowella.demon.co.uk/allPairs.html All-pairs testing]