Create a suite of tests for expected functionality using the Python standard library unittest module.
Looking for a test folder under CompleteME with subfolders matching the structure of the overall project and a test file for each file in the project:
CompleteME
Test
test_HeatTransfer
test_heat_transfer_prob_gen.py
test_heat_transfer_util.py
The first tests to add will be for the test_heat_transfer_util.py file where all of the input variations of parameters for fouriers_law are checked against hand written values and make sure that the function produces errors when too few or too many parameters are given or when the parameters given do not match the expected parameters.
Create a suite of tests for expected functionality using the Python standard library unittest module.
Looking for a test folder under CompleteME with subfolders matching the structure of the overall project and a test file for each file in the project:
The first tests to add will be for the test_heat_transfer_util.py file where all of the input variations of parameters for fouriers_law are checked against hand written values and make sure that the function produces errors when too few or too many parameters are given or when the parameters given do not match the expected parameters.