Software Testing
What is Adhoc Testing? Types with Example
Ad hoc Testing Ad hoc Testing is an informal or unstructured software testing type that aims to...
INTEGRATION TESTING is defined as 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 these software modules when they are integrated
Integration Testing focuses on checking data communication amongst these modules. Hence it is also termed as 'I & T' (Integration and Testing), 'String Testing' and sometimes 'Thread Testing'.
Although each software module is unit tested, defects still exist for various reasons like
Click here if the video is not accessible
Integration Test Case differs from other test cases in the sense it focuses mainly on the interfaces & flow of data/information between the modules. Here priority is to be given for the integrating links rather than the unit functions which are already tested.
Sample Integration Test Cases for the following scenario: Application has 3 modules say 'Login Page', 'Mailbox' and 'Delete emails' and each of them is integrated logically.
Here do not concentrate much on the Login Page testing as it's already been done in Unit Testing. But check how it's linked to the Mail Box Page.
Similarly Mail Box: Check its integration to the Delete Mails Module.
Test Case ID | Test Case Objective | Test Case Description | Expected Result |
---|---|---|---|
1 | Check the interface link between the Login and Mailbox module | Enter login credentials and click on the Login button | To be directed to the Mail Box |
2 | Check the interface link between the Mailbox and Delete Mails Module | From Mailbox select the email and click a delete button | Selected email should appear in the Deleted/Trash folder |
Software Engineering defines variety of strategies to execute Integration testing, viz.
Below are the different strategies, the way they are executed and their limitations as well advantages.
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:
Disadvantages:
In the Incremental Testing 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. Then the other related modules are integrated incrementally and the process continues until all the logically related modules are integrated and tested successfully.
Incremental Approach, in turn, is carried out by two different Methods:
Stubs and Drivers are the dummy programs in Integration testing used to facilitate the software testing activity. These programs act as a substitutes for the missing models in the testing. They do not implement the entire programming logic of the software module but they simulate data communication with the calling module while testing.
Stub: Is called by the Module under Test.
Driver: Calls the Module to be tested.
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.
Diagrammatic Representation:
Advantages:
Disadvantages:
Top Down Integration Testing is a method in which integration testing takes place from top to bottom following the control flow of 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.
Diagrammatic Representation:
Advantages:
Disadvantages:
Sandwich Testing is a strategy in which top level modules are tested with lower level modules at the same time lower modules are integrated with top modules and tested as a system. It is a combination of Top-down and Bottom-up approaches therefore it is called Hybrid Integration Testing. It makes use of both stubs as well as drivers.
The Integration test procedure irrespective of the Software testing strategies (discussed above):
It includes the following attributes:
Entry and Exit Criteria to Integration testing phase in any software development model
Entry Criteria:
Exit Criteria:
Ad hoc Testing Ad hoc Testing is an informal or unstructured software testing type that aims to...
What is Localization Testing? Localization testing is the software testing process for checking...
We have prepared the most frequently asked QA Interview Questions and Answers that will acquaint...
Test data generation is the process of making sample test data used in executing test cases. There are...
What is Database Testing? Database Testing is a type of software testing that checks the schema,...
Performance Testing is a process of testing the speed, response time, stability, reliability,...