Task 2

jeyasri

Jeyasri Sriram

Posted on February 20, 2024

Task 2

1) Boundary Value Analysis - This is a technique to design the test case for input boxes. It will be used to test the input text boxes and it helps to test the limits of input values. It helps to reduce the test cases and time. Ex: If an input box limit is 10 digits, instead of checking the values 0 to 10 we can check only the boundary values -1,0,1,9,10,11.

Test cases for Phone number input box:

  1. Verify with the value -1
  2. Verify with the value 0
  3. Verify with the value 1
  4. Verify with the value 9
  5. Verify with the value 10
  6. Verify with the value 11

2) Decision Table Testing - This is a technique to design the test cases for the input boxes. It helps to test different combinations of input values. Rules: 2^(no of fields). Ex: To test a login page (username and Password) We need to write 4 test cases using the below decision table.

Rules Rules1 Rules2 Rules3 Rules4
Username T F T E
Password T T F E
Output P E E E

Test cases for User name and Password field:

  1. Verify with a valid username and password
  2. Verify with an invalid username and valid password
  3. Verify with a valid username and invalid password.
  4. Verify with an invalid username and password.

3) Use case Testing - Yet to be covered.
4) LCSAJ - Yet to be covered.

💖 💪 🙅 🚩
jeyasri
Jeyasri Sriram

Posted on February 20, 2024

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related