Ask a question from expert

Ask now

Testing Plan for CTAStations Application

6 Pages842 Words99 Views
   

Added on  2019-09-20

About This Document

This article describes the testing plan for CTAStations application including expected behavior and error-resistant input. It includes the description of user interface, programmers' tasks, polymorphism, adding/deleting/modifying data, searching data, and the list of classes required to implement the application. The article also includes a UML class diagram and a complete test plan with test cases for each option in the menu-driven user interface.

Testing Plan for CTAStations Application

   Added on 2019-09-20

BookmarkShareRelated Documents
Class DiagramTesting Plan
Testing Plan for CTAStations Application_1
1.Describe the user interface. What are the menu options and how will the user use the application?Ans: There is one interface: CTAStations. This interface defines some methods that will be implemented by the Station class. My menu contains the total 6 options. The description of the menu options are defined as: 1 Add new station details 2 Search a station 3 Delete a station 4 View root between start and end station 5 Find the nearest station to a location 6 Exit2. Describe the programmers’ tasks. a)Describe how you will read the input file.Ans: There is a CTAProcessClass class which process the all the functionalities of the tasks. There is one class CTA class has the main method. The user interact with the CTA class and all data handling is done in the CTAProcessClass class. When program starts the CTA class call the method readFile of the CTAProcessClass calss.b) Describe how you will process the data from the input file. Ans: The all relevant data is read from the input file and then it stores in lists. There are some listwhich are defined previously. I have created the list for each line.c. Describe how you will store the data (what objects will you store?)Ans: I have created the separate classes for each line and there is one class to store the Station class. I have created a list for each line to store the each station details on this line.d. How will you demonstrate polymorphism?Ans: There is a CTA class. In this class I have used some method which are override. There are a class in which the constructors are overloaded to supply the different data in the class at different type.
Testing Plan for CTAStations Application_2
Override function name with class name:1.CTAStations interface:public int getSequenceNo();public void setSequenceNum(int sequenceNum);2.Station class methods@Override public int getSequenceNo() { return this.sequenceNum; } @Override public void setSequenceNum(int sequenceNum) { this.sequenceNum = sequenceNum; }3. All line classes extend the Station class. So these two methods are also override bye Line classes. e. How will you add/delete/modify data?Ans: I have used the list to store the number of stations details in the list. Process to add new station details: first I have read all the details about the station and the ask for line (red, green, ..etc) and the I have added this new station at the end of red line and set the sequence number for this station and finally this is added to the end of arraylist of that line. f. How will you search data? Ans: I have asked for the station name and the print the details of that station.3. List the classes you will need to implement your application. Ans: Inerface CTAStationsList of classes:1.Station2.RedLine3.GreenLine4.BrownLine5.BlueLiine
Testing Plan for CTAStations Application_3

End of preview

Want to access all the pages? Upload your documents or become a member.

Related Documents
Sales Commission Calculator
|11
|610
|80

Certain Professor Oak from Pallet Town
|9
|2673
|629

Design Documentation Pseudo Code BEGIN Display Welcome message BEGIN
|13
|1512
|68

Movie Project
|8
|598
|172

User and Technical Documentation for Health Club Membership Calculator Program
|26
|5023
|395

OOPS Programming Concept: Bank Account Simulation Program in Java with Inheritance and Encapsulation
|10
|1366
|278