Changes between Version 6 and Version 7 of DeveloperGuidelinesTesting


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

--

Legend:

Unmodified
Added
Removed
Modified
  • DeveloperGuidelinesTesting

    v6 v7  
    88 * http://vallista.idyll.org/~grig/articles/
    99
    10 == Unit Tests ==
     10== Unit Tests (must do) ==
    1111Should we use doctests?
    1212 * http://agiletesting.blogspot.com/2005/01/python-unit-testing-part-2-doctest.html
     13These should be written by the developers
     14
     15== Continuous Integration ==
     16Whenever a commit is made it should be checked to see that it doesn't break anything
     17 * https://launchpad.net/pqm
     18
     19== Boundary Testing (should do) ==
     20Checks functionality of modules against spec
     21
     22== Integration Testing (good thing) ==
    1323
    1424== Usability Tests ==