difference between scenario and testcases?
Answer Posted / kapil
Test case:
Represent the functionality of a single unit.
Test scenario:
It represent the sequence of test.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
how to make test case for anolog voice logger?
Can someone tell me the test cases to test the password for with following scenario: 1. Password should be minimum 6 chars and maximum 8 chars. 2. Password should consist one uppercase letter 3. Password should consist of one numeric 4. Password should consist of one special character.
can anyone send me a copy of a business requirement and test cases attributed to such requirent. thank u
Explain the ramp testing?
can one defect be mapped to more than one test script in manual testing
What are basic types of test cases?
Write a test case for a car, which has been, recently launch in a market to check its durability, fuel efficiency and its optimum speed.
Explain how to develop a test plan and a test case.
Explain the exactly meaning of test case?
how to test stand alone programs?
In a log in page what will be test procedure, test scenario, test description & test steps?
They were asking sily questions and definitions rather than practical experience related questions. More focused on Definitions.
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
Credit card field contains four text boxes. We can validate each textbox separately with conditions but how can we write integrated testcase for all the four?
Explain the branch coverage testing?