Monday, September 6, 2010

How do you use boundary value analysis testing for evaluating the password ?

Boundary Value Analysis for testing password.<br><br>As per rule boundary value Analysis must have SIx Conditions MIN-1, MIN, MIN+1<br>MAX-1, MAX, MAX+1<br><br>For user id when can apply same for password it works like this<br>lets have condition password min 4 char max 10 char in length.password can be any thing since password depends on userid.<br><br>MIN-1<br>User ID : master<br>password : abc<br>result :Should not accept should popup msg "enter Correct Password".<br><br>MIN<br>User ID : Master<br>password : abcd<br>result : Should accept<br><br>MIN+1<br>User ID : Master<br>password : abcd<br>result : Should accept<br><br>MAX-1<br>User ID : Master<br>password : 123456789<br>result : Should accept<br><br>MAX<br>User ID : Master<br>password : abcd123456<br>result : Should accept<br><br>MAX+1<br>User ID : Master<br>password : abcd1234567<br>result : Should not accept should popup msg "enter Correct Password".

No comments:

Post a Comment