Python Testing: Difference between revisions
Jump to navigation
Jump to search
Line 10: | Line 10: | ||
* [[pytest]] | * [[pytest]] | ||
* <span id='unittest'></span>[[Python_Module_unittest#Overview|unittest]] Standard Library module | * <span id='unittest'></span>[[Python_Module_unittest#Overview|unittest]] Standard Library module | ||
* doctest |
Revision as of 01:50, 12 July 2022
Internal
TODO
- PROCESS PyOOP "Testing Object-Oriented Programs" + "Why test?" + "Test-driven development" + "Unit testing" + "Assertion methods" + "Reducing boilerplate and cleaning up" + "Organizing and running tests" + "Ignoring broken tests"
- PROCESS PyOOP "Testing with pytest" + "One way to do setup and cleanup" + "A completely different way to set up variables" + "Skipping tests with pytest" + "Imitating expensive objects" + "How much testing is enough?" + Case study.