Multiple choice technology testing

Which of the following is not described in a unit test standard?

  1. syntax testing

  2. equivalence partitioning

  3. stress testing

  4. modified condition/decision coverage

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

Syntax testing (A) is described in unit test standards. Equivalence partitioning (B) is a standard technique covered. Modified condition/decision coverage (D) is a white-box technique in unit test standards. However, stress testing (C) is typically a system or performance testing technique, not a unit test standard - unit tests focus on individual components, not system-wide stress conditions.