Thursday, December 12, 2019

Testing Report

Question: Write a java application that allows the user to read, display, sort, and search the name (type String), height and weight as well as body mass index (BMI) of a person for N people. N should be declared as a constant and should be either equals to the largest digit of your student ID number or N=9 (if the highest digit of your student ID number is less than 9). The method of calculating BMI after input of height and weight is the same as Assignment 1 specification. The name, height, weight and BMI must be stored in separate single dimension arrays/arrayLists. This requires that your implementation must use parallel arrays (or arrayLists). If there are any uses of an array of records or structures/objects, it will be penalized under the heading Using techniques not covered in the course. The ranges for height (in unit of cm) and weight (in unit of kg) of a person should be in 100220, and 0300 respectively. They are assumed to be integers. These data must be entered from the keyboard a nd a validation for minimum and maximum values for each input data variable must be done. In addition, the input of a persons name must be validated in such a way that a valid name is assumed only to contain English letters and a space between first name and surname. An example of an invalid input of name can be shown in the Figure 7 on page 5. Your application should display and execute a menu with the following options. A switch statement must be used to execute the following menu options.1. Input data 2. Display 3. Sort by name 4. Sort by weight 5. Search 6. Display extreme BMI 7. Exit 1.Input data The details for each option are described as below. 1. Input dataThis option reads each persons name, height and weight for N people from the keyboard and stores them in separate one-dimension arrays/arraylists. Figure 1 shows a sample input for a personal data. If the input of height or weight exceeds the ranges defined on the last page, then an appropriate message should be displayed and the user should be asked to re-enter a new value. In addition, the input of name also must be validated as required on page 1.2. DisplayThis option displays the names, heights, weights and calculated BMI data stored in Arrays/ArrayLists for all people, as shown in Figure 2.3. Sort by nameWhen this option is selected, the names of people are sorted in ascending order and this option also displays sorted names with their height, weight, and BMI data, as shown in Figure 3.You can use any sorting algorithm which uses at least two while loops and one if statement. A built-in sort should not be used.4. Sort by weightThis option sorts the weights in ascending order and displays the corresponding changes of heights, names, and BMI, as shown in Figure 4.5. SearchWhen the Search option is executed and the user enters a persons name regardless of the lower case or upper case in the name spelling, then the height, weight and BMI for that person will be displayed as shown in Figure 5 (In th is example, the persons name bob oconnor is entered). If the entered name doesnt match any existed one, it will show a warning message.6. Display extreme BMIIf the user selects this option, the program will calculate and display the minimum value of BMI, maximum value of BMI as well as their corresponding persons name, as shown in Figure 6.7. ExitSelecting Exit option will exit the execution of the program. Program design You may use any design that meets the specification. However, a good design will adhere to the following guidelines: be logically correct be easy to read and maintain be well-designed use UML class diagram use following methods and class public class BMIDataManager { //constructor public BMIDataManager( ) public void displayMenu() public void inputData() public void sortByName( ) public void sortByWeight( ) public void search( )public void displayExtremes( )private boolean isValidName(String name)helper methods here if anypublic static main(String [ ] args){}} Testing Testing is important. You should: list the different types of test cases. display the results of each test case. Answer: Serial number Unit to be tested Criteria of success Method used for testing Testing results 1 Input Data User will input data of 9 persons Give 1 as option and Just enter name , height and weight Inputs given Successfully 2 Display details It should display details of all persons Choose 2 as option and details of all will be displayed Successful, every detail of all users is displayed. 3 Sort by name Details of all persons should be displayed according to their names Choose 3 as option All the data is sorted according to the name of persons 4 Sort by weight Details of all persons should be displayed according to their weight Choose 4 as option to sort according to weight All data is sorted according to the weight of persons 5 To search any particular person Enter the name of person whose details you want to see Choose 5 as option and enter the name The details of particular person will be displayed 6 Display extreme bmi To find out the minimum and maximum bmi Choose 6 as option and system will print the maximum and minimum bmi values Minimum and maximum bmis are displayed

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.