2 minute read

A type of testing where software modules are integrated logically and tested as a group.

A typical software project consists of multiple software modules, coded by different programmers.

The purpose of this level of testing is to expose defects in the interaction between modules.

The reason behind integration tests

Although each software module is unit tested, defects still exist for various reasons:

  • A Module, in general, is designed by a software developer whose understanding and programming logic may differ from other programmers. Integration Testing becomes necessary to verify the software modules work in unity
  • Through development requirements may change. These new requirements may not be addressed on unit tests and hence system integration Testing becomes necessary.
  • External Hardware interfaces, if any, could be erroneous
  • Inadequate exception handling could cause issues.

Big Bang Testing

Big Bang Testing is an Integration testing approach in which all the components or modules are integrated together at once and then tested as a unit.

This combined set of components is considered as an entity while testing. If all of the components in the unit are not completed, the integration process will not execute.

Advantages:

  • Convenient for small systems.

Disadvantages:

  • Fault Localization is difficult.
  • Given the number of interfaces that need to be tested in this approach, some links may be missed.
  • Since tIntegration testing can only start after all the modules are designed, the testing team will have less time for execution in the testing phase.
  • Since all modules are tested at once, high-risk critical modules are not isolated and tested on priority. Peripheral modules which deal with user interfaces are also not isolated and tested on priority.

Incremental Testing

In this approach, testing is done by integrating two or more modules that are logically related to each other and then tested for proper functioning of the application.

Afterwards, the other related modules are integrated incrementally and the process continues until all the logically related modules are integrated and tested successfully.

Incremental Approach is carried out by two different Methods: Bottom up and Top down

Bottom-up Integration Testing

Bottom-up Integration Testing is a strategy in which the lower level modules are tested first.

These tested modules are then further used to facilitate the testing of higher level modules.

The process continues until all modules at top level are tested. Once the lower level modules are tested and integrated, then the next level of modules are formed.

Advantages:

  • Easier Fault localization.
  • No time is wasted waiting for all modules to be developed

Disadvantages:

  • An early prototype is not possible
  • Critical modules (at the top level of software architecture) which control the flow of application are tested last and may be prone to defects

Top-down Integration Testing

Top Down Integration Testing is a method that takes place from top to bottom following the control flow of the software system.

The higher level modules are tested first and then lower level modules are tested and integrated in order to check the software functionality.

Stubs are used for testing if some modules are not ready.

Advantages:

  • Easier Fault localization.
  • An early prototype is a feasible possibility
  • Critical Modules are tested on priority; which means than major design flaws could be found and fixed early.

Disadvantages:

  • Needs many Stubs.
  • Modules at a lower level may be tested inadequately.

How to do Integration Testing?

  1. Prepare the Integration Test Plan
  2. Design Test Scenarios, Cases, and Scripts.
  3. Execute test Cases and report defects.
  4. Track & re-test defects.
  5. Re iterate over steps 3 and 4 until Integration is successful.