Answered step by step
Verified Expert Solution
Question
1 Approved Answer
You will now add the final features to your app, write and automate the unit tests and submit your final project. Extend your application
You will now add the final features to your app, write and automate the unit tests and submit your final project. Extend your application to allow for the following: 1. Users should be able to use to populate the following arrays: Contents Array Developer Task Names Task ID Task Duration Task Status 2. Users should be able to use these arrays to: Display the Developer, Task Names and Task Duration for all tasks with the status of done. Display the Developer and Duration of the class with the longest duration. Search for a task with a Task Name and display the Task Name, Developer and Task Status. Search for all tasks assigned to a developer and display the Task Name and Task Status. a. b. C. d. Contains the names of all the developers assigned to tasks Contains the names of all the created tasks Contains the generated taskID's for all tasks Contains the Duration of all tasks Contains the Status of all tasks e. f. Delete a task using the Task Name. Display a report that lists the full details of all captured tasks. 3. Use the following test Data for your unit tests and to populate your arrays: Test Data Task 1 Developer Task Name Task Duration Task Status Test Data Task 2 Developer Task Name Task Duration Task Status Test Data Task 3 Developer Task Name Task Duration Task Status Test Data Task 4 Developer Task Name Task Duration Task Status 4. Mike Smith Create Login 5 To Do Edward Harrison Create Add Features 8 Doing Samantha Paulson Create Reports 2 Done Glenda Oberholzer Add Arrays 11 To Do Create the following unit tests: 21; 22; 23 Test: (assertEquals) Developer array correctly populated: The developer array contains the expected test data. Search for tasks Display Developer and Duration for task with Test Data: Task 1-4 longest duration. Search all tasks assigned to Developer Delete Task from array Test Data and expected system responses. Test Data: Developer entry for Test data for tasks 1-4 Display Report The system returns: "Mike Smith", "Edward Harrington" , "Samantha Paulson", "Glenda Oberholzer" The system returns: "Glenda Oberholzer, 11; Test Data: "Create Login The system returns: "Mike Smith, Create Login" Test Data: Samantha Paulson The system returns: Create Reports Test Data: "Create Reports" The system returns: Entry "Create reports" successfully deleted The system returns: 2022
Step by Step Solution
There are 3 Steps involved in it
Step: 1
To complete this task you will need to write code to implement the following features and create unit tests to verify that they work correctly Populate arrays Write code that allows users to input dat...Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started