Multiple choice technology testing

Technique that helps us identify testcases that exercise the whole system on a transaction by transaction basis from start to finish is

  1. Use Case testing

  2. Unit testing

  3. state transition testing

  4. decision table testing

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

Use Case testing identifies test cases that exercise the entire system from start to finish on a transaction-by-transaction basis. Use cases represent real-world user scenarios and workflows, making them ideal for validating end-to-end system functionality. Unit testing (B) focuses on individual components, State transition testing (C) examines system state changes, and Decision table testing (D) maps complex business rules.

AI explanation

Use case testing derives test cases from documented use cases, exercising realistic end-to-end transaction flows through the system from start to finish, which is why it's the technique associated with whole-system, transaction-based coverage rather than isolated unit-level checks.