Write test caes on 1.excel sheet
2. gmail attachments
3.raiway ticketing
4.negative test cases on net banking
Answer Posted / ram
Probable positive one is
Valid, Valid set of values ? Are inputs for positive
testcases
Valid ,Invalid
Invalid ,Valid
Invalid, Invalid
Empty ,Valid
Valid ,Empty
Empty,Empty
Remaining all are i/ps
for negative test cases
| Is This Answer Correct ? | 6 Yes | 10 No |
Post New Answer View All Answers
What is explain security testing?
Explain the concept of semi-random test cases?
Explain the sanity testing?
please give me different test scenario for uploading whatsapp status from gallery and camera
How to write test cases for "open file dialog box" for ms word? Thanks a lot!
1 Crystal Ball 1.1 Purpose This is a simple tool, for entertainment purposes only. 1.2 Scope Only for registered user. 1.3 User Interface Single page with graphic of crystal ball, and text box for typing question. User has to type her question in text box outside ball. Reports: - On ‘submit’, the system needs to access any one of the pre-stored responses at random and display in a graphical, visually appealing manner in the crystal ball. - Audio / graphical changes need to be built in, for added user experience enhancement, like music, sound effects, visual changes. Need to get details.
how to make test case for anolog voice logger?
How to write test cases for "hotel reservatrion" for ms word? Thanks a lot!
What is use case testing?
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
can one defect be mapped to more than one test script in manual testing
write test cases on file open dialog box in notepad
What is ramp testing?
I need GUI test case for home page?
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