Next: Test Example
Up: Testing Framework
Previous: Testing Framework
Contents
Index
- Each unit test must be self contained.
- Each test module (.py file) should be named as "test_" +
featurename.
- Each test method should be named as "test_" + method-name.
- unittest module should be used to do the unit testing. doctest
is discouraged.
2013-06-11