A unit test and implementation needs to be written for calculating the best case time for a tasklist of tasks.
A tasklistshould be passed to the new function to be implemented and should calculate the best case time it will take to complete all the tasks in a tasklist.
For example the below might be the function definition of a calculateTaskListBestCase() function which is tested by the test_calculateTaskListBestCase() unit testing function.
File:
UnitTest_taskList.py
Function:test_calculateTaskListBestCase()
A unit test and implementation needs to be written for calculating the best case time for a
tasklist
of tasks.A
tasklist
should be passed to the new function to be implemented and should calculate the best case time it will take to complete all the tasks in atasklist
.For example the below might be the function definition of a
calculateTaskListBestCase()
function which is tested by thetest_calculateTaskListBestCase()
unit testing function.Example:
calculateTaskListBestCase(self)