how to write the test case for time and date
like TIME : 09:34:32AM
DATE : 12 MAY 1987
Answer Posted / phu
TIME : 09:34:32AM: hh:mm:ss AM/PM
DATE : 12 MAY 1987: dd MMM yyyy
First, identify boundary value of TIME and DATE:
hh: 01 - 12
mm: 01 - 59
ss: 01 - 59
dd: 01 - 31
MMM: JAN - DEC
yyyy: 0001 - 9999
Use boundary technique to write test case:
1. hh: 00, 01, 06, 12, 13
2. mm: 00, 01, 30, 59, 60
2. ss: 00, 01, 30, 59, 60
4. dd: 00, 01, 15, 29, 30, 31
5. MMM: JAN, DEC
6. yyyy: 0000, 0001, 2013, 9999
Other DATE rules:
Leap year (integer multiple of 4): FEB has 29 days, other year: FEB has 28 days
1. 29 FEB 2004
2. 30 FEB 2004
3. 28 FEB 2003
4. 29 FEB 2003
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
Can someone tell me the test cases to test the password for with following scenario: 1. Password should be minimum 6 chars and maximum 8 chars. 2. Password should consist one uppercase letter 3. Password should consist of one numeric 4. Password should consist of one special character.
Can any one tell me how to write test data. i mean, to test each input, 2 test input(1 for +ve, & other for -ve) are given. so , for example, if i want to write test data for login form, how many test data should i write in test case?
What is quick test professional and what test environment it supports?
What are basic types of test cases?
can anyone send me a copy of a business requirement and test cases attributed to such requirent. thank u
Write a test case for telephone?
Do you know explain security testing?
please tel me how to write test case for search engine to track peoples,when user enter the city,state,zipcode(ex:Kansas city,Missouri,64155)? (note country is already selected as a united states )
What are all the companies are doing manual testing till now ?
Explain the syntax testing?
how to write test case for GUI testing and tell me in brief about GUI and all related WEB based testing..if possible then pls give example of its test case...m new in testing........thannx for help in advance
You have designed test cases to provide 100% statement and 100% decision coverage for the following fragment of code. If width > length then biggest_dimension = width else biggest_dimension = length end_if the following has been added to the bottom of the code fragment above. Print 'biggest dimension is ' &biggest_dimensionprint 'width: ' & width print 'length: ' & length how many more test cases are required?
How to write test case for this scenario. The Contact Information screen shall be displayed to the user during Case Update
Explain the format of a requirement traceability
How to write test case for this scenario. The system shall allow for a wild card search for the first name with a minimum of one character.