Positive and negative test cases

I was asked this question in a interview.
Write all positive and negative test cases for user_name field in login form. the user name can accept only alphanumeric character with a range 5 to 10.
How will you test it ?

Questions by pritam_parashar

Showing Answers 1 - 3 of 3 Answers

MK

  • May 21st, 2014
 

Positive test cases
1. Test with Username in alphanumeric characters
2. Test with Username is Length of 5 alphanumeric characters
3. Test with Username is Length of 10 alphanumeric characters

Negative test cases
4. Test with Username field empty
5. Test with entering Username in characters
6. Test with entering Username in Numeric
7. Test with entering Username in special characters
8. Test with Username is Length of less than 5 alphanumeric characters
9. Test with Username is Length of less greater than 10 alphanumeric characters

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions