Can anybody tell test cases for the following condition?
In a railway reservation form, 4 types of ticket ranges are
there like a) age up to 3, NO TICKET. b) age up to 7, HALF
TICKET. c) age up to 60, FULL TICKET. d) age from 61, SENIOR
CITIZEN QUOTA.
if you enter age into the text box the relevant message
should be displayed..... Eg. FULL TICKET.
Answer Posted / banubsc08
user interface
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
Explain the state testing?
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
What are basic types of test cases?
What are the different check points for SIT and UAT while testing an Internet Banking application. Consider any one functionality of Internet Banking
Do you know explain security testing?
Please guide me for Add new user test cases
Explain the format of a requirement traceability matrix. And how to include this rtm in the requirement document?
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
Explain the load testing?
They were asking sily questions and definitions rather than practical experience related questions. More focused on Definitions.
How to write test case for this scenario. The text field that reads “ enter SDU number or the city and state of the SDU” shall be removed from the contact screen
Explain the domain testing?
how to write testcase for the output of an program ****0 ***01 **012 *0123 01234
WE WANT HEALTHINSURENE PROJECT FUNCTIONAL TEST CASES
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