Friday, March 11, 2011

Various Levels of SoftwareTesting

Testing can be done on the following levels:
  1. Component or Unit Testing: Unit testing tests the minimal software component, or module. Each unit (basic component) of the software is tested to verify that the detailed design for the unit has been correctly implemented. In an object-oriented environment, this is usually at the class level, and the minimal unit tests include the constructors and destructors.
  2. Integration Testing: Integration testing exposes defects in the interfaces and interaction between integrated components (modules). Progressively larger groups of tested software components corresponding to elements of the architectural design are integrated and tested until the software works as a system
  3. System Testing: System testing tests a completely integrated system to verify that it meets its requirements
  4. Acceptance Testing: Finally, acceptance testing can be conducted by the end-user, customer, or client to validate whether or not to accept the product. Acceptance testing may be performed as part of the hand-off process between any two phases of development