Modern QA2026Common Pitfalls — tiles
Log inJoin
29 / 87 · 02 AI-Augmented Test Design · Combinatorial Test Suite Generation← prev⊞ allnext →☰ Read as one page

5.6Common Pitfalls

  1. Forgetting constraints. Not all combinations are valid. SAML auth may only work with Enterprise accounts. If you do not model constraints, you get test cases that should never exist.

  2. Confusing pairwise with random. Random sampling does not guarantee pair coverage. A random selection of 20 tests from 324 combinations will typically miss 30-40% of pairs.

  3. Ignoring negative combinations. Pairwise covers valid interactions, but you also need tests for invalid combinations (e.g., negative quantity + expired coupon + missing auth).

  4. Over-relying on AI optimality. AI-generated pairwise suites are good but not always mathematically minimal. For critical systems, verify with a dedicated tool.