What is Integration Testing?

Integration Testing is a method of software testing where modules are connected and tested as a larger group.

Β·

2 min read

What is Integration Testing?

Background

Integration testing, also known as integration and testing, is the next step up from unit testing.

In unit testing, individual chunks of software are verified. Whereas, integration testing checks multiple components for correctness.

The goal of integration testing is to confirm software works in a group.

Integration testing makes common use of stubs and drives.

  • A stub is a fake called program, it allows for the testing of the program calling the stub.
  • A driver is a fake caller program, it allows for the testing of the program called by the driver.

Approaches to Integration Testing

There are four main approaches to integration testing.

  • Big-bang: all the software modules are created and combined at once.
  • Bottom-up: low-level components are tested by using drivers before high-level components.
  • Top-down: first high-level modules are tested by using stubs before low-level components.
  • Mix-integration (aka sandwich testing): a combination of the bottom-up and top-down approaches.

Advantage

  • Integration testing is an important way of verifying that larger chunks of code and services work together as intended.

Disadvantage

  • Integration testing often requires a significant amount of extra code in the form of stubs and drivers to be written.

Further Reading

Integration tests are just one kind of testing. My series on software testing and its methods covers many other testing variations.

Did you find this article valuable?

Support Sean Coughlin by becoming a sponsor. Any amount is appreciated!

Β