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.
Answers were Sorted based on User's Feedback
Use select case statement
example:
dim age
age=inputbox("Enter the age")
select case age
case "age up to 3"
msgbox "No Ticket"
case "age up to 7"
msgbox "Halt Ticket"
Just i gave example
case "age up to 60"
msgbox "Full Ticket"
case else
msgbox"SENIOR CITIZEN QUOTA"
end select
| Is This Answer Correct ? | 3 Yes | 3 No |
Answer / vinoth
check out the textbox will accept numeric value from(0-100)
it will accept valid input
| Is This Answer Correct ? | 0 Yes | 0 No |
how to write test cases Interactive Elements like Social Bookmarking Post a Comment Number of Views Existing Rating Rate this Add to favorites Track this Author Print this Guess who
can anyone please send me the sample testcases on how to write it into the testtemplates
How to write test case for this scenario. The system shall auto populate the Email Address on the contact screen with the Email Address of the user profile
is test case required to be baselined?
Write negative test case for logout????? Answer soon friends
Can any one please tell me what is the use of negative test cases when we are giving the invalid input in test data
What is use case testing?
How does one write Test Cases?
how can we write test cases with help of functional spec? is it not appropriate to write by using the application?
How you will write test cases on DROP DOWN list BOX on GUI
Given the following code, which is true about the minimum number of test cases required for full statement and branch coverage: Read P Read Q IF P+Q > 100 THEN Print “Large” ENDIF If P > 50 THEN Print “P Large” ENDIF how to find statement and branch coverage? Explain in brief?
What are the Test Cases for an email id for username and password?