What are the different levels of Testing in Software Testing? Unit Testing, Integration Testing, System Testing, User Acceptance Testing.
The different l evels of testing are :- Unit Testing Integration Testing System Testing User Acceptance Testing UNIT TESTING Unit test is a smallest testable piece of software. Unit test is a procedure used to validate that individual unit of source code is working properly. Before entering into the unit testing it should be gone through code review. Tests the functionality of units. Typically done by the developers not by testers. It is typically used to verify control flow, data flow and memory leak problems. Integrating Testing Integration is a process of combining and testing multiple components together. Starts at module level when various modules are integrated with each other to form a system. Considered interfaces on system. Focuses on design and construction of software architecture. Approaches of Integrating testing are :- Bottom Up Approach Top Down Approach Hybrid Approach (Critical Part First) Big Bang Approach What is Bottom Up Approach ? Process o...
Comments
Post a Comment
Please do not enter any spam link in the comment box.