volume_mute
Three Stages of Development Testing
publish date: 2026/06/17 05:25:29.414349 UTC
volume_muteDevelopment testing includes three stages. Match each stage to its correct focus.
To complete the line match
- Click on an item in the first group
- Click on the match in the second group
To delete a match, double click on a line
Stage
Component testing
System testing
Unit testing
Focus
Testing component interfaces that provide access to component functions
Testing component interactions in a partial or complete system
Testing the functionality of objects or methods individually
Correct Answer
(1) Unit testing,Testing the functionality of objects or methods individually
(2) Component testing,Testing component interfaces that provide access to component functions
(3) System testing,Testing component interactions in a partial or complete system
Explanation
Unit testing focuses on individual program units or object classes. Component testing focuses on the interfaces between several integrated units. System testing focuses on testing interactions when some or all components are integrated into a complete or partial system.
Reference
Software Engineering, Ian Sommerville, 10th edition
