Can anybody help me in writing test cases for a scenario? need help at the earliest. will send you the requirement doc to your email id. thanks raj
2316How should write test case (i.e. in proper format or simply step by step) in an interview test paper?
1 5351can any one send sample test case documents in informatica with examples plz send documents to "mrlsurya@gmail.com"
2 10778Can any tell to create test data for SUM (calculation), Scenario is 0 to 9 digits are available as we see in the calculator, I want to certify that the sum of the two numbers are working fine by providing test data.
2628Write the integration test cases for below scenario: You have three components 1. Message 2. Call 3. Call Log Hint: Mobile phone message box
2 9156How to write the test scenarios for the following: 1. Searching train. 2. Data encryption and decryption. 3. Single signon. 4. Document printing. 5. Testing EMail. 6. Data authentication.
HCL,
3463Hi Team, I have two scenarios ,only one step alone deference betweeen them and preconditions of Test scenarios are defferent . In the above sutuation , are we going divide test cases into two or can we club into them into a single. Regards seshu
2466How to write a test case for create folder in the email. create aliases for email adress in the email. thanks Its urgent
2610
Define some of the attributes of a test case?
What are the Test Cases Comes under Regression Suite?
Test a function that reads a file into memory, say ReadFileToMemory( FILE * pFile, BYTE * pMem, DWORD numBytes)
Who will take care of test plan and test case?
Explain which test cases are written first black boxes or white boxes?
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.
For how many days (or) weeks you will test a product or software?
write a test case for telephone billing ?
How to write test cases for the following scenario: The system shall limit the search result display to 200 records. Do we need to write test data for it. How do we create a test data for it.
How to write a test case for create folder in the email. create aliases for email adress in the email. thanks Its urgent
Please guide me for Add new user test cases
Write test cases for this scenario if a job fails it should get restarted again this should happen for three times if it fails again then it should quit?
Explain how to develop a test plan and a test case.
How to write the test cases for STP
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