Posts

3 Types of Testing in QTP/UFT Automation Testing

Image
1.Dynamic Testing:   It is also known as control flow based testing. This test type of testing is done to make sure that every part of the program is functioning properly. Every branch, code, statements and conditions are covered by this test. The branch testing evaluates that whether the program is switching from one loop to another. The statement testing covers every line of code in a statement. The condition testing validates the accuracy of condition in the code. The path coverage checks whether the program is following the sequence of flow or not. 2.Cyclomatic Complexity: This technique is done through control flow graph and thus helps in verifying all coverage nodes. The risk to modify is lower and easier to understand if the value of Program’s Cyclomatic Complexity is lower. 3.Static Testing:   This testing is also Non- Execution technique or verification testing. It is done in the early phase of the software development cycle. In...