What is a test case?

Answer Posted / wasimhajwane

Test case is noting but sequential,elaborative and executable form of the requirement.

In every project we are getting the requirement in the shortcut format, with short cut format of the requirements, it is very difficult for us to perform testing on the application, so we are using test cases to easily solve such problem.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

what is the technology used in financial applications?

2917


how to write test case on gmail for TO field in compose page? only for the particular field.what will different type of user do with it like student,doctor?

4607


They were asking sily questions and definitions rather than practical experience related questions. More focused on Definitions.

1522


How would you do " Keeping two folders in sync testing"

2004


Explain the unit testing?

670






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

8524


A wholesaler sells printer cartridges. The minimum order quantity is 5. There is a 20% discount for orders of 100 or more printer cartridges. You have been asked to prepare test cases using various values for the number of printer cartridges ordered. Which of the following groups contain three test inputs that would be generated using boundary value analysis?

1504


write test cases on file open dialog box in notepad

1198


can any body help me with providing a a case for usability testing...

1678


What are semi-random test cases?

865


how to write test cases in interview exam like one website it contain a/c # text box, current bill amount text box,sms offer,calling offer,internet these 3 are list boxes and remindmelater,continue these 2 are buttons. and qu is like 1.user doesn't have any dues from past 90 days,2.whose bill amount >= rs2000 from past 6 months. use this 2qu write testcases.

2124


Explain the functional testing?

678


pls i want test cases for oss? whts the process of oss testing

2005


If I have to write the test cases for any report & there is date box.then may I have to write only select date or have to write all steps required for selecting date

2068


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);

1938