Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

How to write simple test cases?

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


Please Help Members By Posting Answers For Below Questions

test cases for bus transport (TNSTC)

3416


Explain the concurrency testing?

1114


Write a test case on a durability of an electric bulb and test it that it will last for next 10 months.

2588


Write the use cases for following 1. Comment section of Facebook 2. Instagram status Implementation

917


What is business validation test case?

1150


Explain the sanity testing?

1148


how to write testcase for the output of an program ****0 ***01 **012 *0123 01234

1759


Sample test cases for data conversion(Utility billing system)

7491


write test cases for flipkart.

11096


HOW TO WRITE TEST CASES FOR MEGHA MENU DROP DOWN BOX.

2728


What is quick test professional and what test environment it supports?

1149


what is the technology used in financial applications?

3487


Explain the exactly meaning of test case?

1163


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.

2343


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 { } public RoadNetwork : List { } public RoadNetwork Concatenate(RoadNetwork roads);

2451