Changes between Version 14 and Version 15 of DeveloperGuidelinesTesting


Ignore:
Timestamp:
01/11/09 18:24:08 (16 years ago)
Author:
Fran Boon
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DeveloperGuidelinesTesting

    v14 v15  
    1010== Unit Tests (must do) ==
    1111These 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
    1420
    1521 * Rspec is an equivalent for Ruby: http://rspec.info/
     
    2228== Regression Testing ==
    2329Fired by dev after certain number of changes or whenever they like.
     30
     31 * http://docs.python.org/library/test.html
    2432
    2533== Boundary Testing (should do) ==