What are the test cases to write to test user account
locksout after 5 invalid attempts
Answer Posted / yuxia
1. 1st attempt login with invalid credential - error message
should display
2. 4th attempt login with invalid credential - error message
should display
3. 5th attempt login with invalid credential - system
message should display that user account is locked out
4. 6th attempt login with valid credential - system message
should display saying that user account has been locked out
and please contact admin
Is This Answer Correct ? | 14 Yes | 0 No |
Post New Answer View All Answers
Explain transaction testing?
How to test a stored procedure?
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
Explain the syntax testing?
Write test cases for 8+4?
Explain which test cases are written first black boxes or white boxes?
What are the test cases for mouse?
What is explain security testing?
what is black box system in software development in system analysis and design?
Explain the unit testing?
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
How to write test cases or test scripts for UAT testing which is done manually
In manual testing, I have query regarding data conversion testing. I am working on xml document. How do we write test cases for below input as well as for output
Input:
Test a function that reads a file into memory, say ReadFileToMemory( FILE * pFile, BYTE * pMem, DWORD numBytes)
Suppose a job should be executed for every two hours? Write test case for this?