volume_mute
Ordering the Testing Stages
publish date: 2026/06/18 05:28:24.800560 UTC
volume_mutePlease drag and drop the options to sort them
Place the three stages of development testing in the correct order from first to last.
Component testing - testing composite components through their interfaces
System testing - testing interactions when some or all components are integrated
Unit testing - testing individual objects or methods in isolation
Correct Answer
(1) Unit testing - testing individual objects or methods in isolation
(2) Component testing - testing composite components through their interfaces
(3) System testing - testing interactions when some or all components are integrated
Explanation
Development testing proceeds in order: (1) Unit testing - individual objects and methods tested in isolation; (2) Component testing - integrated composite components tested through their interfaces; (3) System testing - components are integrated into a partial or complete system and their interactions are tested.
Reference
Software Engineering, Ian Sommerville, 10th edition
