|
| Total Answers and Comments: 3 |
Last Update: December 01, 2007 Asked by: ranjini |
|
| | |
|
Submitted by: rk_pradheep Boundary Value Analysis for testing password.
As per rule boundary value Analysis must have SIx Conditions MIN-1, MIN, MIN+1 MAX-1, MAX, MAX+1
As per ref available for me from
http://softwaretestingguide.blogspot.com/
for user id when can apply same for password it works like this lets have condition password min 4 char max 10 char in length.password can be any thing since password depends on userid.
MIN-1 User ID : master password : abc result :Should not accept should popup msg "enter Correct Password".
MIN User ID : Master password : abcd result : Should accept
MIN+1 User ID : Master password : abcd result : Should accept
MAX-1 User ID : Master password : 123456789 result : Should accept
MAX User ID : Master password : abcd123456 result : Should accept
MAX+1 User ID : Master password : abcd1234567 result : Should not accept should popup msg "enter Correct Password".
Above answer was rated as good by the following members: kalpanamaddula | Go To Top
|