Multiple choice

What is the correct order of various levels of testings?

  1. Unit testing, Integration testing, System testing and Acceptance testing

  2. Unit testing, System testing, Integration testing and Acceptance testing

  3. System testing, Unit testing, Integration testing and Acceptance testing

  4. System testing, Integration testing, Unit testing and Acceptance testing

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

The correct order of various levels of testing is Unit testing: This type of testing considers the internal logic and check whether single unit is working well or not. So, it is the first level. Integration testing: It checks the integrity of the modules and concentrates on functional requirements which is done after individual units are tested. So, it comes after unit testing. System testing: It is done to verify whether entire system is working according to requirement or not. So, it comes after checking the integrity of modules. Acceptance testing: It is done to know whether the system is read for acceptance by the user. So, it is a final level.