Changes between Version 14 and Version 15 of DeveloperGuidelinesTesting
- Timestamp:
- 01/11/09 18:24:08 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DeveloperGuidelinesTesting
v14 v15 10 10 == Unit Tests (must do) == 11 11 These should be written by the developers 12 * Doc Tests: http://agiletesting.blogspot.com/2005/01/python-unit-testing-part-2-doctest.html 13 * !PyUnit: http://pyunit.sourceforge.net/ 12 * Doc Tests 13 * http://agiletesting.blogspot.com/2005/01/python-unit-testing-part-2-doctest.html 14 * UnitTest 15 * http://docs.python.org/library/unittest.html 16 * http://agiletesting.blogspot.com/2005/01/python-unit-testing-part-1-unittest.html 17 * Formerly !PyUnit: http://pyunit.sourceforge.net/ 18 * Py.Test 19 * http://agiletesting.blogspot.com/2005/01/python-unit-testing-part-3-pytest-tool.html 14 20 15 21 * Rspec is an equivalent for Ruby: http://rspec.info/ … … 22 28 == Regression Testing == 23 29 Fired by dev after certain number of changes or whenever they like. 30 31 * http://docs.python.org/library/test.html 24 32 25 33 == Boundary Testing (should do) ==