User Tools

Site Tools


notes:data:fall2022:projects:dll1

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
notes:data:fall2022:projects:dll1 [2022/11/02 17:02] – [PROGRAM] gsubernotes:data:fall2022:projects:dll1 [2022/11/03 16:10] (current) – [UNIT TESTS] zswartwo
Line 28: Line 28:
 =====UNIT TESTS===== =====UNIT TESTS=====
 Total of 162 tests. Unit tests are called with make check, similar to every other week. Safe practice to **make clean** before every **make** to ensure old results are cleaned up.  There will be an errors file created after running make, it’s a good idea to check this as well.  Tests are split amongst all the functions, with 7 going to empty and rmlist. Compare, Swap, Sort, and Obtain have 12, 31, 48, and 57 tests respectively. While unit tests do a good job of ensuring basic functionality, ensure that your functions can work with any provided input. To be specific, if you're going to use swap inside sort(a good idea), make sure your swap can handle functions side by side anywhere in the list. The unit test for swap does not check for this. Total of 162 tests. Unit tests are called with make check, similar to every other week. Safe practice to **make clean** before every **make** to ensure old results are cleaned up.  There will be an errors file created after running make, it’s a good idea to check this as well.  Tests are split amongst all the functions, with 7 going to empty and rmlist. Compare, Swap, Sort, and Obtain have 12, 31, 48, and 57 tests respectively. While unit tests do a good job of ensuring basic functionality, ensure that your functions can work with any provided input. To be specific, if you're going to use swap inside sort(a good idea), make sure your swap can handle functions side by side anywhere in the list. The unit test for swap does not check for this.
 +
 +Additionally, if one wishes to be shown any compiling errors/warnings immediately, one could use "make debug" to do so, as this will reroute the contents of the make to stdout instead of the errors file.
notes/data/fall2022/projects/dll1.1667408546.txt.gz · Last modified: 2022/11/02 17:02 by gsuber