How to write test case for this scenario.
The system shall allow the user to select an option to sort the results by the city of the family contact
Answer / mudaseer
test steps :
enter the contact name and click on search test data:Mudaseer
expected result: The contact with Mudaseer should be displayed
test steps: select sort by city
expected result: Mudaseer should be displayed for different cities
like there are 5 mudaseer in bangalore
10 in pune etc
| Is This Answer Correct ? | 1 Yes | 0 No |
How should the test cases be framed to validate the excel sheet?
What is Unit Testing ? What is Integration Testing ? What is acceptance testing ? What is Static testing? What is System testing? What is Load Testing? What is Smoke Testing? What is Soak Testing? What is Scalability Testing? What is Sanity Testing? What is Ramp Testing? What is Monkey Testing? What is Gray Box Testing? What is Functional Testing? What is Glass Box Testing? What is Dynamic Testing? What is Compatibility Testing? What is Concurrency Testing? What is Component Testing? What is Ad Hoc Testing? What is Agile Testing?
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<IPoint> { } public RoadNetwork : List<Road> { } public RoadNetwork Concatenate(RoadNetwork roads);
Explain the soak testing?
How about do we go as far as writing test cases is considered?
Explain the format of a requirement traceability matrix. And how to include this rtm in the requirement document?
How to create Test Data? What are the Fields in Test Data. Please any one specify the format of Test Data?
test case for pen?? with actual value and expected calue
Suppose that you're running tests on windows calculator and find that 1+1=3, 2+2=4, 3+3=7, 4+4=8, 5+5=11, 6+6=12. write a bug title and bug description that effectively describes this problem.
can one give the test cases for Installation Testing
There is a game in that there are 20 levels an ordinary person can play it up to 12th level.So if you are a tester and if you have to test that game up to 20th level then how u can test that game.