what is not present in the test case?
1>requirment ID
2>test case ID
3>bug ID
4>objective
Answer Posted / santoshnathan
Actually the testcase format as follows
1.Testcase ID
2.TestsuiteID
3.Testprocedure
4.Testdescription
5.expected result
6.Actual result
7.testdata
8.Defect ID(Bug id)
9.severity
10.priority
11.Remarks
Anwser for the question is 1.requirment id and 2.objective
will not appear in test case.
| Is This Answer Correct ? | 3 Yes | 3 No |
Post New Answer View All Answers
How to write the test scenarios for the following: 1. Searching train. 2. Data encryption and decryption. 3. Single signon. 4. Document printing. 5. Testing EMail. 6. Data authentication.
This was asked to me recently in Microsoft interview How would you do DOS copy command testing
How to generate test cases for 'replace a string' method?
Test a file replication service that copies files from one net location to another
Write a test case for telephone?
write test cases for flipkart.
What is test cases for mobile phone ?
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?
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.
Write test cases for 8+4?
Explain the state testing?
plz.. tell me hw to write the Use Case for Online Purchase... just tod. itself i need...
What are the test cases for mouse?
Can some body help to write possible test cases for a credit card at POS (point of sale)
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