Answer Posted / srikark
while writting the test cases one has to follow the
following things:
1.Test case should be very simple,easy to
understand,according to the Requirement,Possible
action,powerful.
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
test cases for bus transport (TNSTC)
Explain the concurrency testing?
Write a test case on a durability of an electric bulb and test it that it will last for next 10 months.
Write the use cases for following 1. Comment section of Facebook 2. Instagram status Implementation
What is business validation test case?
Explain the sanity testing?
how to write testcase for the output of an program ****0 ***01 **012 *0123 01234
Sample test cases for data conversion(Utility billing system)
write test cases for flipkart.
HOW TO WRITE TEST CASES FOR MEGHA MENU DROP DOWN BOX.
What is quick test professional and what test environment it supports?
what is the technology used in financial applications?
Explain the exactly meaning of test case?
Can any1 tell me how to do and Integration test design and test cases for Order Inventory system for use cases. ALso how is that going to differ from System Testing. The system is similar to amazon.com online ordering system and you can place order by calling customer call center.
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