In which order should the different types of testing (unit tests, continuous integration and functional test, regression tests) be performed in Agile Testing? Are the testing levels from waterfall model present in Agile Testing? Which types of testing from Waterfall model can be use in Agile testing?
Software/Hardware used:
ASKED:
March 9, 2010 9:17 PM
UPDATED:
October 4, 2010 7:18 PM
But what about integration testing and system testing? As far as I know in Agile testing there isn’t integration testing, there is only continuous integration testing. Or am I wrong?
Continuous integration refers to automated builds and running the unit tests on each new build. Often some of the functional level tests can be run during continuous integration as well, if they run quickly and can be integrated into the CI tool. However, many times functional tests (if they are at system level) take too long to run and are run on a separate schedule.