Wednesday, August 2, 2017

Pair-wise (or other data combination) testing

Found good word combinations generator with rich parameter configurations - http://textmechanic.com/text-tools/combination-permutation-tools/combination-generator/ 

Examples: for applying A,B,C parameter in some service:

Initial parameters list:

  • A
  • B
  • C

Results (combination by 2 words with ";" delimiter.):

  • A;B
  • A;C
  • B;A
  • B;C
  • C;A
  • C;B

In my case A;B == B;A, so duplicates deleted:

  • A;B
  • A;C
  • B;C


No comments:

Post a Comment