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', 'Mail box' and 'Delete mails' and each of them are 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.
est 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 Mail box select the an email and click delete button |
Selected email should appear in the Deleted/Trash folder |