What is Integration Testing? Integration Test Example

By Vijay

By Vijay

I'm Vijay, and I've been working on this blog for the past 20+ years! I’ve been in the IT industry for more than 20 years now. I completed my graduation in B.E. Computer Science from a reputed Pune university and then started my career in…

Learn about our editorial policies.
Updated May 9, 2025

This tutorial is all about integration testing. We have explained the concept with the help of an example for better understanding. Let’s get started.

Integration testing is done to test the modules/components when integrated to verify that they are working as expected, i.e. to test the modules that work fine individually and do not have issues when integrated.

When testing large applications using the black box testing technique, it involves the combination of several modules that are tightly coupled with each other. We can apply the Integration testing technique concepts to test these scenarios. 

List of tutorials covered in this series:

Tutorial #1: What is Integration Testing? (This Tutorial)
Tutorial #2: What is Incremental Testing
Tutorial #3: What is Component Testing
Tutorial #4: Continuous Integration
Tutorial #5: Difference Between Unit Testing and Integration 
Tutorial #6: Top 10 Integration Testing Tools

What is Integration Testing

Integration Testing Tools

The meaning of the term, ‘Integration testing’ is quite simple – Integrate/combine the unit-tested module one by one and test the behavior as a combined unit.

The main function or goal of this testing is to test the interfaces between the units/modules.

We normally do Integration testing after “Unit testing”. Once all the individual units are created and tested, we combine those “Unit Tested” modules and start doing the integrated testing.

The main function or goal of this testing is to test the interfaces between the units/modules.

The individual modules are first tested in isolation. Once the modules are unit tested, they are integrated one by one, until all the modules are integrated, to check the combinational behavior, and to validate whether the requirements have been implemented correctly.

Here, we should understand that Integration testing does not happen at the end of the cycle, rather it is conducted simultaneously with the development. So most of the time, all the modules are available for testing, and the challenge is to test something that does not exist!

Why Integration Test

Integration testing can be challenging and demands development and logical expertise. What is the reason for incorporating this testing into our overall testing approach?

Here are some reasons:

  1. In the real world, when applications are developed, it is broken down into several smaller modules and individual developers are assigned 1 module. The logic implemented by one developer differs from another developer, so it becomes important to check whether the logic implemented by a developer is as per the expectations and renders the correct value following the prescribed standards.
  2. Many a time, the face or the structure of data changes when it travels from one module to another. Some values are appended or removed, which causes issues in the later modules.
  3. Modules also interact with a few third-party tools or APIs, which also need to be tested to ensure that the data accepted by that API / tool is correct and that the response generated is also as expected.
  4. Frequent requirement change is a very common problem in testing. Many a time, the developer deploys the changes in unit testing. Integration testing becomes important at that time.

Advantages

This testing has several advantages, and a few of them are listed below.

  • This testing ensures that the integrated modules/components work properly.
  • Integration testing can start once the modules to be tested are available. This does not require another module to be completed for testing to be done, as Stubs and Drivers can be used for the same.
  • It detects errors related to the interface.

Challenges

We have identified several challenges associated with the Integration Test.

#1) Integration testing means testing two or more integrated systems to ensure that the system works properly. Besides testing the integration links, it is necessary to perform exhaustive testing, considering the environment to ensure that the integrated system works properly.

There might be different paths and permutations which can test the integrated system.

#2) Managing Integration testing becomes complex because of a few factors involved in it like the database, platform, environment, etc.

When integrating a new system with the legacy system, extensive changes and testing are necessary. This concept is relevant when merging two legacy systems.

#4) Integrating two different systems developed by two different companies is a big challenge because the impact of changes made in one system on the other is uncertain.

To minimize the impact while developing a system, developers should consider a few things, such as possible integration with other systems, etc.

Types of Integration Testing

Given below is a type of Test Integration along with its advantages and disadvantages.

Big Bang Approach

Big Bang approach integrates all the modules in one go, i.e. it does not go for integrating the modules one by one. It verifies if the system works as expected or not once integrated. If any issue is detected in the completely integrated module, then it becomes difficult to find out which module has caused the issue.

The Big Bang approach consumes a lot of time in finding a module that has a defect itself because it takes time, and once the defect is detected, fixing it would cost more as the defect is detected at a later stage.

Big bang approach

Advantages of the Big Bang approach:

  • It is a good approach for small systems.

Disadvantages of the Big Bang Approach:

  • It is difficult to detect which module is causing an issue.
  • The Big Bang approach requires all the modules together for testing, which leads to less time for testing as design, development, and integration would take most of the time.
  • Testing takes place at once only, which thereby leaves no time for critical module testing in isolation.

Integration Testing Steps:

  1. Prepare Integration Test Plan.
  2. Prepare integration test scenarios & test cases.
  3. Prepare test automation scripts.
  4. Execute test cases.
  5. Report the defects.
  6. Track and re-test the defects.
  7. Re-testing & testing goes on until integration testing is complete.

Test Integration Approaches

There are fundamentally 2 approaches for doing test integration:

  • Bottom-up approach
  • Top-down approach.

Please consider the figures given below to test the approaches:

Integration 1

Bottom-up Approach

Bottom-up testing, as the name suggests, starts from the lowest or the innermost unit of the application, and gradually moves up. Integration testing starts with the lowest module and gradually progresses towards the upper modules of the application.

We continue this integration until we integrate all the modules and test the entire application as a single unit.

In this case, modules B1C1, B1C2 & B2C1, B2C2 are the lowest modules which are unit tested. Modules B1 & B2 are not yet been developed.

The functionality of Module B1 and B2 is that it calls the modules B1C1, B1C2 & B2C1, B2C2. Since B1 and B2 are not yet developed, we would need some program or a “stimulator” which will call the B1C1, B1C2 & B2C1, B2C2 modules. These stimulator programs are called DRIVERS.

In simple words, DRIVERS are the dummy programs that are used to call the functions of the lowest module in a case when the calling function does not exist. The bottom-up technique requires a module driver to feed a test case input to the interface of the module being tested.

The advantage of this approach is if a major fault exists at the lowest unit of the program, it is easier to detect it, and corrective measures can be taken.

The disadvantage is that the main program does not exist until the last module is integrated and tested. As a result, we can only detect the higher-level design flaws at the end.

Top-down Approach

This technique starts from the topmost module and gradually progresses towards the lower modules. Only the top module is unit-tested in isolation. After this, we integrate the lower modules one by one. The process is repeated until all the modules are integrated and tested.

In the context of our figures, testing begins with Module A, and we integrate the lower modules B1 and B2 one by one. Here are the lower modules B1 and B2 that are not available for integration. So, testing the topmost module A, we develop “Stubs”.

“Stubs” can be referred to as code a snippet that accepts the inputs/requests from the top module and returns the results/ response. This way, although the lower modules do not exist, we can test the top module.

In practical scenarios, the behavior of stubs is not as simple as it seems. In this era of complex modules and architecture, the called module, most of the time involves complex business logic like connecting to a database.

As a result, creating Stubs becomes as complex and time-consuming as the real module. Sometimes, the Stub module may be bigger than the stimulated module.

Both Stubs and drivers are dummy pieces of code which is used for testing the “non-existing” modules. They trigger the functions/method and return the response, which is compared to the expected behavior.

Let’s conclude with some differences between Stubs and Driver:

StubsDriver
Used in Top down approachUsed in Bottom up approach
Top most module is tested firstLowest modules are tested first
Stimulates the lower level of componentsStimulates the higher level of components
Dummy program of lower level componentsDummy program for Higher level component

Change is the only constant in this world, so we have another approach called “Sandwich testing” which combines the features of both top-down and bottom-up approaches. When we test huge programs like operating systems, we have to have some more techniques that are efficient and boost confidence.

Sandwich testing plays a very important role here, where both the top-down and bottom-up testing start simultaneously.

Integration starts with the middle layer and moves simultaneously towards up and down. With our figure, our testing will start from B1 and B2, where one arm will test the upper module A and the other arm will test the lower modules B1C1, B1C2 & B2C1, B2C2.

Since both approach starts simultaneously, this technique is complex and requires more people along with specific skill sets, thus adding to the cost.

GUI Application Integration Test

Now let’s talk about how we can imply integration testing in the Blackbox technique.

We all understand that a web application is a multi-tier application. We have a front end that is visible to the user. We have a middle layer that has business logic; we have another middle layer that does some validations, integrates some third-party APIs, etc., then we have the back layer which is the database.

Integration Testing Example

Check out the example below:

I am the owner of an advertising company, and I post ads on different websites. At the end of the month, I want to see how many people saw my ads and how many people clicked on my ads. I need a report for my ads to be displayed and I charge accordingly to my clients.

GenNext software developed this product for me and below is the architecture:

Integration 2

UI module, which is visible to the end user, is where all the inputs are given.
BL is the Business Logic module, which has all the calculations and business-specific methods.
VAL is the Validation module, which has all the validations of the correctness of the input.
CNT is the content module that has all the static contents, specific to the inputs entered by the user. These contents are displayed in the reports.
EN is the Engine module, this module reads all the data that comes from the BL, VAL, and CNT modules, extracts the SQL query, and triggers it to the database.
Scheduler is a module that schedules all the reports based on the user selection (monthly, quarterly, semiannually & annually)
DB is the Database.

Now, having seen the architecture of the entire web application, as a single unit, Integration testing, in this case, will focus on the flow of data between the modules.

The questions here are:

  1. How will the BL, VAL, and CNT module read and interpret all the data entered into the UI module?
  2. Is BL, VAL, and CNT modules receiving the correct data from UI?
  3. In which format the data from BL, VAL, and CNT is transferred to the EQ module?
  4. How will the EQ read the data and extract the query?
  5. Is the query extracted correctly?
  6. Is the Scheduler getting the correct data for reports?
  7. Is the result set received by the EN, from the database is correct and as expected?
  8. Is EN able to send the response back to the BL, VAL, and CNT modules?
  9. Is the UI module able to read the data and display it appropriately to the interface?

In the real world, the communication of data is done in an XML format. So whatever data the user enters in the UI, it gets converted into an XML format.

In our scenario, the data entered in the UI module gets converted into an XML file which is interpreted by the 3 modules BL, VAL, and CNT. The EN module reads the resultant XML file generated by the 3 modules, and extracts the SQL from it and queries into the database.

The EN module also receives the result set, converts it into an XML file, and returns it to the UI module, which converts the results in a user-readable form and displays it.

In the middle, we have the scheduler module, which receives the result set from the EN module, creates and schedules the reports.

So where does integration testing come into the picture?

Well, testing whether or not the information/data is flowing correctly will be your integration testing, which in this case would be validating the XML files. Are the XML files generated correctly? Do they have the correct data? Is the data being transferred correctly from one module to another? These things will be tested as part of Integration testing.

Try to generate or get the XML files and update the tags and check the behavior. This is something very different from the usual testing that testers normally do, but this will add value to the tester’s knowledge and understanding of the application.

A few other sample test conditions can be:

  1. Are the menu options generating the correct window?
  2. Are the windows able to invoke the window under test?
  3. For every window, identify the function that calls for the window that the application should allow.
  4. Identify all calls from the window to other features that the application should allow.
  5. Identify reversible calls: closing a called window should return to the calling window.
  6. Identify irreversible calls: calling windows closes before the called window appears.
  7. Test the different ways of executing calls to another window e.g. – menus, buttons, keywords.

Steps to Kick Off Integration Tests

  1. Understand the architecture of your application.
  2. Identify the modules.
  3. Understand what each module does.
  4. Understand how the data is transferred from one module to another.
  5. Understand how the data is entered and received into the system (entry point and exit point of the application).
  6. Segregate the application to suit your testing needs.
  7. Identify and create the test conditions.
  8. Take one condition at a time and write down the test cases.

Entry/Exit Criteria for Integration Testing

Entry Criteria:

  1. Integration test plan document is signed off and approved.
  2. Integration test cases have been prepared.
  3. Test data has been created.
  4. Unit testing of developed modules/Components is complete.
  5. All the critical and high-priority defects are closed.
  6. The test environment is set up for integration.

Exit Criteria:

  1. All integration test cases have been executed.
  2. No critical and Priority P1 & P2 defects are opened.
  3. Test Report has been prepared.

Integration Test Cases

Integration test cases focus mainly on the interface between the modules, integrated links, and data transfer between the modules as modules/components that are already unit tested, i.e. the functionality and other testing aspects have already been covered.

So, the main idea is to test if integrating two working modules works as expected when integrated.

For example, Integration Test cases for LinkedIn applications will include:

  1. Verifying the interface link between the login page and the home page, i.e. when a user enters the credentials and logs, it should be directed to the homepage.
  2. Verifying the interface link between the home page and the profile page, i.e. profile page, should open up.
  3. Verify the interface link between the network page and your connection pages, i.e. clicking the accept button on Invitations of the network page should show the accepted invitation on your connection page once clicked.
  4. Verify the interface link between the Notification pages and the Say Congrats button, i.e. clicking the Say Congrats button should direct toward the new message window.

Many integration test cases can be written for this specific site. The above four points are just an example to understand what integration test cases are included in testing.

Is Integration a White box or Black box Technique

Integration testing techniques can be counted in both black boxes as well as white box techniques. Blackbox technique is where a tester need not have any internal knowledge of the system, i.e. coding knowledge is not required whereas white box technique requires internal knowledge of the application.

Now, performing integration testing, it could include testing the two integrated web services which will fetch the data from the database and provide the data as required which means it could be tested using the white box testing technique whereas integrating a new feature in the website can be tested using the black box technique.

So it’s not specific if integration testing is a black box or white box technique.

Integration Testing Tools

There are several tools available for this testing.

Below is a list of tools:

  • Rational Integration Tester
  • Protractor
  • Steam
  • TESSY

For more details on the above tools, check this tutorial:

System Integration Testing

System Integration Test is done to test the complete integrated system.

The team tests modules or components individually in unit testing before integrating them. Once all the modules undergo testing, the team integrates them and performs system integration testing to test the system as a whole.

Difference Between Integration Testing and System Testing

Integration testing is a testing in which one or two modules that are unit tested are integrated to test and verification is done to verify if the integrated modules work as expected or not.

System testing is testing where the system as a whole is tested, i.e. all the modules/components are integrated to verify whether the system works as expected and no issues occur because of the integrated modules.

Conclusion

This was all about integration testing and its implementation in both the white box and black box techniques. Hope we could explain it clearly with relevant examples.

Test Integration is a big deal in the testing cycle because it helps find defects when modules are combined. Spotting defects early on saves time and money. This makes sure that the integrated modules are working fine.

Hope this detailed tutorial on Integration Testing has enriched your knowledge of the concept. We would love to know what you think. Please post your feedback in the comments section below.

Was this helpful?

Thanks for your feedback!

Recommended Reading

  • Unit, Integration and Functional Testing

    In this article, we have provided an extensive comparison of Unit, Integration and Functional Testing For any software application, both Unit testing and Integration testing are very important as each of them employs a unique process to test a software application. However, either one or even both cannot replace Functional…

  • What is Component Testing

    We have given a detailed explanation of component testing, also known as module testing, with examples in this article. What is Component Testing that is also called Module Testing in Software Testing? The component is the lowest unit of any application. Component testing, as the name suggests, is a technique…

  • Integration Testing Tools

    Overview of the best Integration Testing Tools and Frameworks: There are different levels of testing and one most important level is “Integration Testing” which combines different units or modules and tested as a group. It also tests the interface between modules and identifies critical defects which are caused due to…

  • Spock For Integration And Functional Testing With Selenium

    Spock for Integration Testing (like Rest Services) and for Functional Testing (with Selenium): We explored Mocking, Stubbing, and Spying in Spock in our previous tutorial. So far, in this Full Training Tutorial Series on Spock, we have covered writing unit tests using the Spock framework. Unit tests typically test a single class,…


READ MORE FROM THIS SERIES:



41 thoughts on “What is Integration Testing? Integration Test Example”

  1. This article cleared my concepts ..Thanks a lot.. but I have a query . Can you please tell me how many branches can be made in the diagram you explained while explaining Bottom Up & Top down approach

    Reply
  2. Again thanks STH for the article especially about the two approaches for integration testing. Hope for some tools in future post….

    Reply
  3. The goal of integration testing is to make sure a system consisting of a number of components will function according to specifications when all the components are put together. If that is the case, why spend time testing interfaces between interacting modules? Why not just put them all together and test the system as a whole?

    Can i arguments both for and against with examples?

    Reply
  4. Thank you all for your comments and responses. It really keeps me motivated to improve on my quality.:)

    @Krishna, Before you jump into Investment Banking domain, I would recommend you to read the articles from NCFM and try to find and give some certification on those. This will really help you on the domain front and eventually on testing. To design you Integration testing strategy, its important to understand the architecture and the data flow of your application. So go step by step. First understand the Domain, then the application , architecture and the break it to design your test strategy. Don’t forget to draw your scope here.

    @Burcu – Its the EN module.

    Reply
  5. I it very good and informative article, Shilpa posses very good knowledge in testing as well as in teaching/explaining the topic. It is appreciable that the complex topic like integration testing has been explained in very easy manner. I think every one who has a little knowledge will understand this topic. Thanks a ton to shilpa.

    Reply
  6. Article is very informative and very easy to understand..

    Hi Shilpa, very soon i would be working on Investment banking domain,( preferably mortgages) request you to share info on the above domain and how to test.
    Please share as an article or please share it to my mail id.

    Reply
  7. Great post buddy, Integration testing is one of the agile methodologies of software testing where individual components or units of code are tested to validate interactions among different software system modules. In this process, these system components are either tested as a single group or organized iteratively.

    Reply
  8. Good article ..but again same query in my mind.
    Can you please explain with practical example (like login page etc) which is higher module and which is lower module.

    Reply
  9. You could help us understand better if the topics are arranged in order . For example tutorials under “Functional testing” can be reordered as
    1.Unit testing
    2.Integration testing
    3.System testing
    acceptance testing and so on.

    Reply
  10. Thanks for explaining integration testing with an example easy to understand. I have a question about the tools that are used for integration testing. What are the commonly used tools for this stage of testing?
    Thanks.

    Reply
  11. I think that Test integration and Integration Testing both are different concepts and you’ve mixed both the concepts in this article.

    Reply

Leave a Comment