Write all test cases for any credit card.

Answer Posted / kishore

I accept with Rashmi ,that is a correct answer but u have to
add some more point like about pin number ,this has only one
customer ,it should not accept to other customer ,every card
has unique pin number ,then i wont accept ayother number.
--------------------------------------------------------------
Thanq for ur answ rashmi
--------------------------------------------------------------

Is This Answer Correct ?    9 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Do you know mutation testing?

690


What is the state testing?

717


Define some of the attributes of a test case?

684


What is component testing?

721


Explain the integration testing?

691






How to test a stored procedure?

638


Write the test case for a login page?

721


how to write a test procedure & test log for login system

2762


How to write test cases for manual testing? What are the main syntex for writing test cases for Junit?

2486


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

1945


Explain the glass box testing?

651


write a test cases for WLAN

513


Explain the smoke testing?

636


What is business validation test case?

680


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 { } public RoadNetwork : List { } public RoadNetwork Concatenate(RoadNetwork roads);

1928