Answer Posted / nikunj pitroda
Negative TestCase for the White Board :
1. User should remove fonts from white board after some times.
2. White marker is not used in the White board.
3. If Light is near to White board then, sometimes user can not read from the desk.
4. User should fill up the sign every fixed times.
5. User can not use heavy(so Dark) Marker Pen on the white board, otherwise font will spread after some times.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
how to write test case on gmail for TO field in compose page? only for the particular field.what will different type of user do with it like student,doctor?
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
150 integration testing scenarios for gmail
How many test cases u will write for Acceptance testing?
How to test a stored procedure?
what is the test plan for ms-word
How to write test cases for "hotel reservatrion" for ms word? Thanks a lot!
how to write a test cases for courier offices?
Write test cases for 8+4?
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 )
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
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?
How to write a test case for create folder in the email. create aliases for email adress in the email. thanks Its urgent
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