Levels Of Testing
Depending on the software development process, Tests are grouped for specify level.
The levels on development process can be unit, integration and system.
This testing will commonly Known as "Component Testing". This verifies the specific section of the code functionally. We can say in object-oriented environment its as a class, and the tests include constructors and destructors.The levels on development process can be unit, integration and system.
- Unit Testing
This type of testing mainly perform by developers but testers also can do.
The reason to perform by the developers is as they have work on code, so they know the specific work of that function.
- Integration Testing
- System Testing
Meaning of testing environment is similar as production environment is:
- The hardware should be similar to production.
- The software is as similar to the production.
- The data should be the clone copy of production.
Comments
Post a Comment