do we write separate test cases for each type of testing?
for example for functional testing and integration
testing,we write two seprate test case documents or just
one?please explain.
Answer Posted / hemasubu
Thank u...........Sameena
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
can one defect be mapped to more than one test script in manual testing
Can any one please give me a test case for transaction of money thro' mobile phones. I really need it soon. i need the test case in ieee format.please anyone help me.
explain end to end scenario's for online Money transfer in Banking Domain?
can anyone send me a copy of a business requirement and test cases attributed to such requirent. thank u
What is the syntax testing?
You have designed test cases to provide 100% statement and 100% decision coverage for the following fragment of code. If width > length then biggest_dimension = width else biggest_dimension = length end_if the following has been added to the bottom of the code fragment above. Print 'biggest dimension is ' &biggest_dimensionprint 'width: ' & width print 'length: ' & length how many more test cases are required?
Write the test case for a login page?
how to make test case for anolog voice logger?
User registration form so many details will be there to enter like Username,Phone No,Email id ect.how do we write test cases for that? in one textbox i have to write all the test cases and go to next textbox
Explain the load testing?
write a test cases for WLAN
If I wrote test cases for Login Window with test case Name Login window & test case id L_01.Now if Name of Login window get changed in the next version.then May I have to change the Test case name & Test case id OR HAVE TO block the previous test case and write the new one
Explain the scalability testing?
can any body help me with providing a a case for usability testing...
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