How would you combine acceptance testing with exploratory testing to improve software quality?
hard🧠 Conceptual Q9 of Q15
Testing Fundamentals - Testing Types and Levels
How would you combine acceptance testing with exploratory testing to improve software quality?
AUse acceptance tests to verify requirements, then explore unexpected behaviors manually
BReplace acceptance tests with exploratory tests entirely
CRun exploratory tests only after all acceptance tests fail
DUse exploratory tests to write acceptance tests automatically
Step-by-Step Solution
Solution:
Step 1: Understand roles of acceptance and exploratory testing
Acceptance tests check known requirements; exploratory tests find unknown issues.
Step 2: Identify best integration approach
Use acceptance tests to verify requirements, then explore unexpected behaviors manually correctly combines both: verify requirements then explore for surprises.
Final Answer:
Use acceptance tests to verify requirements, then explore unexpected behaviors manually -> Option A
Quick Check:
Combine formal checks with manual exploration [OK]