can u say me how many test cases i can get for a user to
login and enter password ..please specify in testcase
desing template for that
Answer Posted / ponkumara guru paran
a) To check the with Valid User id(5 Char)and Valid Password
b) To check with Valid User id(10 Char) and Valid Password
c) To check the Rules in formula for used this way 4 >= 5
d) To check the valid user id for 5 <= 6 ::
e) To check the valid user password for 9 >= 10
f) To check the valid user password 10 <= 11;
g) To check the used in Blank space for valid user name &
password
h) To Check the Alert Message for "CAPS LOCK IS ON"
while giving password with Upper case
i) To check the nothing words or numbers for not valid password
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
how to write test cases for the example state name starts with A B C D E F G H I J K L Z
A wholesaler sells printer cartridges. The minimum order quantity is 5. There is a 20% discount for orders of 100 or more printer cartridges. You have been asked to prepare test cases using various values for the number of printer cartridges ordered. Which of the following groups contain three test inputs that would be generated using boundary value analysis?
Test a function that reads a file into memory, say ReadFileToMemory( FILE * pFile, BYTE * pMem, DWORD numBytes)
How can we write a good test case?
Explain the unit testing?
test cases for friend finder system using gps?
Do you know explain security testing?
Do you write test plan and test case?
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.
Explain how to develop a test plan and a test case.
Explain the format of a requirement traceability
What are the possible test cases for a palindrome.It must be starting with alphabet and its length is 100 .It should accept alphanumerics only.It should take only 100 numerics to the textbox
How to test Webservices and how can we write test cases for that
Can any1 tell me how to do and Integration test design and test cases for Order Inventory system for use cases. ALso how is that going to differ from System Testing. The system is similar to amazon.com online ordering system and you can place order by calling customer call center.
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