August 2014
Beginner to intermediate
216 pages
5h 13m
English
How do we know these various statistical functions work? This is potentially very tricky programming, with lots of opportunities to have things go wrong.
The best tool to make sure that software works is unit testing. The idea behind unit testing is to break a module down into separate units—usually functions or classes—and test each unit in isolation. Python gives us two ways to perform unit testing:
unittest.TestCase classesMost secret agents will be very happy with docstring test cases. They're easy to write. We put them in the docstring right in front of the rest of the code. They're visible when we use the help() function.
We create ...