Foundations of Programming (Python) Labs
LAB 09-A:
In this Lab, you’ll create multiple modules that work together. We’ll re-implement the functionality of last module’s assignment using modules. You’ll also add a test harness to test your modules.
Note: You do not need to type all the code. You can re-purpose code from last week’s assignment.
Important: create a sub-directory Mod09_A in your _FDProgramming directory for this. (will get important in the next step!)
- Create a script called 'TestHarness.py'
- Create a script module 'DataClasses.py'
- Add the code in this listing to the DataClasses.py script.
- Add code to your TestHarness.py script to test your DataClasses.py script
- Create a script module 'IOClasses.py'
- Add the code in this listing to the IOClasses.py script
- Add code to your TestHarness.py script to test your IOClasses.py script
- Create a script module 'ProcessingClasses.py'
- Add the code in this listing to the ProcessingClasses.py script
- Add code to your TestHarness.py script to test your ProcessingClasses.py script
- Create a script 'CDInventory.py'
- Add code to your script to run the application (former main section)
- Ensure that all test cases in the test harness work
- Ensure that all functionality in the application work.
Note about testing: Make sure to test that the script works as expected (with ‘good’ values).
But also think about what values to use to test that you can’t break your script.
These tests typically are more efficient.
Back to self guided, Video only Materials
Back to self guided, Video plus Written Materials
Back to guided, Video plus Written Materials plus Personal Guidance, Feedback, and Support (class setting)