How would you do " Keeping two folders in sync testing"
No Answer is Posted For this Question
Be the First to Post Answer
difference between scenario and testcases?
5 Answers CarrizalSoft Technologies, Satyam,
What is the difference between Test Input and Test Data??
what are those parameters or matrixes for tesing a software user interface?
How will you review test cases?
26 Answers HCL, TCS,
how to write testcase for the output of an program ****0 ***01 **012 *0123 01234
What is the correct answer of basic types of test cases ?
how will we know test cases are written by us are correct
Explain the ad hoc testing?
my friend has done one project using .NET framework with C# coding and backend SQL Server 2005. In it, he has prepared and execute the test cases and stored that in the centralized database. in software testing, Do the testers do like this or use excel sheet to store the test cases? tell me .... i have so confuse.. pls anybody answer me as quickly as possible
How to create Test Data? What are the Fields in Test Data. Please any one specify the format of Test Data?
write a test case for yahoo login page ? input data user:6 alpha numeric;password:10 letters....10 pstive test cases and 10 negative test cases?
5 Answers CTS, iGate, Magic Software,
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<IPoint> { } public RoadNetwork : List<Road> { } public RoadNetwork Concatenate(RoadNetwork roads);