Boundary value analysis-Boundary value analysis is testing the boundary values( example :Range 0 to 10) For example if the user is allowed to enter only till 10 in a input text box then the testing will inculde validating the boundary values like 0 which is the minimum value and maximum value as 10 .The boundary value will be 1 and 9 .
The testing will validate invalid value-11 and negative value -1
Decision table testing : Here the testcases are designed with input combinations and validating results based on the combinations.
For example: Consider Login and Password
Login : P F P F
Password: F P F F
Expected Result: Success Fail Fail Fail
So here the login is successful only when login and password is entered correctly and we have checked different conditions .
Use case testing : Use case testing means validating the entire e2e functionality of a build .It includes all the scenarios which will assure the quality and bug free product .
LCSAJ testing : Linear code sequence and jump which means testing the code .
Top comments (0)