For a Password field, we can accepts every character except underscore and semicolon. It can accept min 6 characters and maximum 12 characters. Prepare boundary value and equivalence class test case
Answers were Sorted based on User's Feedback
Answer / harshad oswal
invalid equivalence class uderscore,semi colon & less than 6 and greater than 12
characters
valid equivalence class
all charcters between
6 to 12
valid boundary: 6 and 12
invalid boundary 5 and 13 AND underscore and semi colon
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / mallikarjun vh
Test Case: Password Field Screen
Equivalence Partition Test Case:
Step 1: Verify the User is presented with the password Field screen to input password
Step 2: Verify the password field accepts any type of character except underscore and Semicolon.
Step 3: Verify the the Password field accepts min of 6 characters and maximum of 12 characters.
Step 4: Enter the password as "pass1" (5 characters), Result: Password Rejected
Step 5: Enter the password as "pass16" (6 characters), Result: Password Accepted
Step 6: Enter the password as "authenticate" (12 characters), Result: Password Accepted.
(Here the covered partitions are (Min-1), Min, Max.
Boundary Value Analysis(BVA) Test Case:
Step 1: Verify the User is presented with the password Field screen to input pasword
Step 2: Verify the password field accepts any type of character except underscore and Semicolon.
Step 3: Verify the the Password field accepts min of 6 characters and maximum of 12 characters.
Step 4: Enter the password as "pass1" (5 characters), Result: Password Rejected
Step 5: Enter the password as "pass16" (6 characters), Result: Password Accepted
Step 6: Enter the password as "pass123" (7 characters), Result: Password Accepted
Step 7: Enter the password as "amenities16" (11 characters), Result: Password Accepted
Step 8: Enter the password as "authenticate" (12 characters), Result: Password Accepted
Step 9: Enter the password as "authenticate1" (13 characters), Result: Password Rejected
(Here the covered Boundary values are: (Min-1), Min, (Min+1), (Max-1), Max, and (Max+1)
| Is This Answer Correct ? | 2 Yes | 0 No |
Diff B/w Test Strategy and test plan
please explain me with example of this question. diff between bug and diffect. don't give def please give answer with example.
what are the different types of SDLC?
37 Answers CybAge, i-Link, IBM, Intel, Middle East Bank, Satyam, TCS, Value Labs, Wipro,
Types of reviews and explain them????
What is the purpose of test plan in your project?
What is Entry Criteria & Exit Criteria
What is difference between web based testing and windows based testing ?
what is the diffrence b/w Regression testing and re-testing
what should be tested when credit card is used as payment option in ecommerce project?can anyone tell me in detail what to test n how to test when credit card is involved in web application?
What is the difference between functional testing and behavioral testing?
what are the different methods to test a product in 'Japanese' language? NOTE:User is unable to perform basic functionalities while using the app..(copy, paste, text selection etc.)
Q) If pseudo code below a programming language. what test case s are required to achieve 100% statements coverage If x=3 then display_message x; If y=2 then display_message y; else display_message z; else display_message z;