Please let me know how to write a test case for Digital
Watch. Please any body can give the answer
Answer Posted / vijay
Some More cases:
1. Check for the water resistance.
2. Check for the Calendar display like correct day.date.year
3. Check for the adjustment keys(like Date, Time, AM or PM)
are in correct place and working perfectly.
5. Check for company name, Logo and the look of watch as
per standard or not.
4. Check for the listed functionality of Watch (if
available in watch):
a. Stopwatch
b. Alarm etc.
| Is This Answer Correct ? | 11 Yes | 2 No |
Post New Answer View All Answers
If I have to write the test cases for any report & there is date box.then may I have to write only select date or have to write all steps required for selecting date
How to write test case for this scenario. The Contact Information screen shall be displayed to the user during Case Update
Explain the soak testing?
Can any one please give me a test case for transaction of money thro' mobile phones. I really need it soon. i need the test case in ieee format.please anyone help me.
How to write a test cases for the following Please it is urgent Once user clicks that link Invite Friend page opens up thru which user can do 2 functions - first is to search friends detail(name, mail id) from her address book in other sites (india times, yahoo, gmail and rediff) and second to mail the invite to the selected person/s. User can send invite to multiple person at same time. Searching friends detail in other address books will work like this: - User will input name, email id, pwd etc, select from which site she want to get friends list and then click on Import. - Users address book from other sites will be imported in one shot(first time) to iDiva database. - It will be arranged in alphabetical order(complete list) and mail ids which are already used will be in different color. - User will be able to update her address book by clicking on ""Refresh"" button on the page, which will trigger the process again, and fetch new mail ids.
Explain the dynamic testing?
What is use case testing?
How does the size of the OPCODE field limit the number of operations? Give an example to support your explanation?
Explain the static testing?
Explain the smoke testing?
can you tell me how to write test cases for payments, receipts, inward clearing, outward clearing, A/c statements ?
Write a test case for a car, which has been, recently launch in a market to check its durability, fuel efficiency and its optimum speed.
Credit card field contains four text boxes. We can validate each textbox separately with conditions but how can we write integrated testcase for all the four?
Explain the load 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