can someone tell me the test cases for following scenario of
password:
1. Password should be minimum 6 chars and maximum 8 chars.
2. Password should consists of 1 uppercase letter.
3. Password should consists of 1 numeric.
4. Password should consists of 1 special character.
Answer Posted / top_anand
Do boundary value analysis by putting 5,6,7,8,9 character
valid password. After that try various combination of
negative scenarios like blank, spaces, spaces at start,
spaces at end, spaces in between, alpha lowercase only,
alpha uppercase only, alpha lower+upper, alpha lower+upper +
Number, alpha lower+upper + special character, special +
Number, only special, only numeric etc etc...
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
How to write test cases for "open file dialog box" for ms word? Thanks a lot!
What are semi-random test cases?
Explain the syntax testing?
Test Case for Text Editor!
User registration form so many details will be there to enter like Username,Phone No,Email id ect.how do we write test cases for that? in one textbox i have to write all the test cases and go to next textbox
There is French dictionary and if you want to check it in English and there is no documentation available then how you will test it and write a test case and Test scenario on it.
Elaborate test plan and content availability in test plan.
Write a test case of login window?
Can some body help to write possible test cases for a credit card at POS (point of sale)
Explain how to develop a test plan and a test case.
Roads concatenation Problem
Consider we have some GIS (Geo Information System) operating
over some road network. Each road represented as array of
two-dimensional geographical points. Road network is a set
of roads.
System has function called Concatenate(). This function
takes raw road network and should return optimized road
network. Optimization lies in concatenating roads with
matching start or end points, i.e. if road AB end point
matches road BC start point, then optimized network should
contain concatenated road AC. Optimized network shouldn’t
contain two roads which can be concatenated.
Your task is to suggest set of test cases for Concatenate()
function in order to make sure it works correctly.
public interface IPoint
{
double Lat { get; }
double Lon { get; }
}
public Road : List
Explain the concurrency testing?
If I wrote test cases for Login Window with test case Name Login window & test case id L_01.Now if Name of Login window get changed in the next version.then May I have to change the Test case name & Test case id OR HAVE TO block the previous test case and write the new one
Write a test case for a car, which has been, recently launch in a market to check its durability, fuel efficiency and its optimum speed.
How to write test cases for the following scenario: The system shall limit the search result display to 200 records. Do we need to write test data for it. How do we create a test data for it.