RE: How do you integrate the modules before performing...
Integration testing: Testing of combined parts of an application to determine if they function together correctly.There are three types of integration testing.1. Big bang testing: Testing with all modules combined together invariable of its levels. Often done for small projects.2. Bottom up test:Testing by integrating lower level modules and ascending towards the higher-level modules.3. Top down: Testing the higher-level modules and descending towards the lower level modules.This can be accomplished with dummy modules to replace the under construction modules with so-called stubs and drivers.
RE: How do you integrate the modules before performing the integration test?
Basically in my company integration will done by Dev team on the same what we do is we will identify inter module scenarios and will rite cases on that both negative n positive cases and this will be added to the Module test plan and tht will considered as IT testplan and will be executed
Here we can ensure tht existing indivaul module and as well as integrated modules both holds the quality and there is no ill effect after the integration on indivual module.
RE: How do you integrate the modules before performing the integration test?
Integrating of modules can be done when we have source code but for testing team we get application exe this exe will be installed in local machine and run the application for Testing purpose then how come we can integrate modules it will be done by the development team before sending the application exe.