Interview Questions, Answers and Tutorials

Bottom Up Integration Testing

Bottom Up Integration Testing

An approach to integration testing where the lowest level components are tested first then used to facilitate the testing of higher-level components. The process is repeated until the component at the top of the hierarchy is tested.
In this approach, testing is conducted from the submodule to the main module, if the main module is not developed a temporary program called DRIVERS is used to simulate the main module.

Advantages:

* Advantageous if major flaws occur toward the bottom of the program.
* Test conditions are easier to create.
* Observation of test results is easier.
Disadvantages:
* Driver Modules must be produced.
* The program as an entity does not exist until the last module is added.
 
 

5 thoughts on “Bottom Up Integration Testing

Comments are closed.