suppose an interviewer asks you to write a testcase for a
login window (and application is not given to test). Should
we write actual results or expected results or both?
Answer Posted / nits
you should go for test scenarios..thats it.It will be
enough for the interviewer.
| Is This Answer Correct ? | 1 Yes | 0 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.
how to prepare a test case for online restaurant table reservation system. plz give an answer ASAP, email at suja_rvndrn@yahoo.co.in
Explain the scalability testing?
How to write test case for this scenario. If the Zip Code field is populated, the system shall compare the zip code value entered to the zip code value in the Family Individual Information Tab
how to write test cases for the example state name starts with A B C D E F G H I J K L Z
How to write test cases for the following scenario: The system shall limit the search result display to 200 records. Do we need to write test data for it. How do we create a test data for it.
What are the different check points for SIT and UAT while testing an Internet Banking application. Consider any one functionality of Internet Banking
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.
write test cases for hospitality management system
Explain the format of a requirement traceability
How to write test case for android application,alarm clock,LCD display screen. And after seeting alarm mobile get switch off how to write test case..
Can someone help to write testcase for the scenario as early as possible.: 1. Complaint logged since one week 2. complaint info sent to supervisor with high priorit mail 3. 10 users logged into website , performance could not be degraded ( response within 5 seconds) 4. site should be user protected. 5. it should be work with IE 6 IE 7 6. complaint log should be generated more than one week
Give me a example that differentiate Test case Procedure,Test case Scenario,Test case Discription & test steps.
test cases for friend finder system using gps?
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