A repository of examples and inspiration for extending the users toolbox when writing unittests.
While the examples are written in Python, the concepts are applicable to any language that supports unit testing.
For people that are more into Python, some examples are implemented with both Pythons built in unittest framework as well as the third party pytest framework to show the differences and similarities between the two.
In the future the documentation will be shared on a Github Pages site, but for now you can clone the repository and build the documentation locally.
Start by install uv:
pip install uvThen run mkdocs serve to build and serve the documentation locally:
uv run mkdocs serveThe documentation will be available at http://127.0.0.1:8000/ during serving.