Testing the Project
(If you have already signed up) Read the moodle first
The Moodle pages of the course contain important information which you should read before studying these pages, including information about the aims of the project and its grading. The moodle pages also link to the most relevant parts of these pages. These pages expect you to be familiar with the contents of the moodle and can feel confusing if you do not.
Testing Requirements
Read about the testing requirements in the course evaluation.
Unit Testing and Dependency Injection
If you are not familiar with unit testing, read the unit testing guide from the Software Engineering course. The material on dependency injection may also be useful. Dependency injection is a programming technique that makes testing easier.
Testing Complicated Algorithms
The coursework involves implementing complicated algorithms. Testing these can be challenging, as unit tests are often not sufficient. Proper testing of complicated algorithms requires a deep understanding of how the algorithm works. What does it mean for your algorithm to be correct?
- The correctness of a game-playing bot is not simply that it plays well. For example, a Minesweeper bot should never hit a mine when a tile is considered safe. A chess bot must not make illegal moves and should be able to deliver checkmate, if possible within the given search depth.
- The correctness of a pathfinding algorithm is not just about finding the shortest path. For example, an A* search with an inverted heuristic will still find the shortest path but will take much longer than expected.
- For a compression algorithm, correctness is not just ensuring that the decompressed file matches the original. Additionally, the size of the compressed file should meet the expectations.
- When testing the correctness of neural networks, it is not enough that the network classifies a large portion of the test set correctly. You also must test whether the network’s structure is correct and whether backpropagation functions as expected.
Representativeness of Test Inputs
For complicated algorithms, it may be difficult to come up with representative inputs for testing. Can we be sure that our test inputs cover all branches? What if our code only fails with inputs larger than a thousand? Especially when testing complicated algorithms, it is crucial that the test inputs are representative. Read more about representative test inputs here.
Beyond Unit Tests
While unit tests and representative inputs go a long way, comprehensive coursework testing often requires additional testing techniques. Examples of such techniques include:
Note: You don’t need to use all of these. The most important thing is to choose the testing methods that best suit your coursework. The course staff can assist. Compared to unit tests, correctness and performance tests for more complex features can take a significant amount of time. Therefore, they may not be ideal to run alongside unit tests every time. Instead, a few representative cases (e.g., automatically found ones) can be included in unit tests, while the rest can be executed separately in a dedicated test program. In other words, your coursework should include both unit tests and more advanced testing methods.
Additional Material
- Pylint is a static analysis tool for Python code that helps maintain code quality.
- Testing Neural Networks – A blog post by Sebastian Björkqvist.
- Range Minimum Query Example – A repository with examples of testing more complicated algorithms.
Fix this page
Make an suggestion for an improvement by editing this file in GitHub.