Differences between revisions 2 and 3
Revision 2 as of 2002-11-20 17:13:00
Size: 220
Editor: pD9E39B9F
Comment:
Revision 3 as of 2004-02-27 19:25:32
Size: 1077
Editor: MikeRovner
Comment: Ian Bicking inspired discussion
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
Check out coverage.py, at http://www.garethrees.org. This module runs your code, then produces a report on how many statements were executed, and which ones were not. Use it to ensure your unit tests test everything. == Software ==

 * UnitTest in the standard library (http://www.python.org/doc/current/lib/module-unittest.html)
 * PyUnit at http://pyunit.sourceforge.net
 * [http://www.garethrees.org/2001/12/04/python-coverage/ StatementCoverage] This module runs your code, then produces a report on how many statements were executed, and which ones were not. Use it to ensure your unit tests test everything.
 * DataTest at http://formencode.org/docs/DataTest/README.html

== Best Practices ==

== Discussion ==

Sprouted out by http://formencode.org/docs/DataTest/TODO.html.

What I need is a layered test system like
 * test suit
   * with fast/normal/detailed mode
   * with known failing tests excluded
 * test package to group related tests with preset parameters
 * individual test
   * with options like log details
   * with ability to flex parameters, extend options etc.
 * test utilities
   * fuzzy difference
   * different logging/reporting/visualization helpers
   * with output capture capability
-- MikeRovner [[DateTime(2004-02-27T19:25:32Z)]]

Software

Best Practices

Discussion

Sprouted out by http://formencode.org/docs/DataTest/TODO.html.

What I need is a layered test system like

  • test suit
    • with fast/normal/detailed mode
    • with known failing tests excluded
  • test package to group related tests with preset parameters
  • individual test
    • with options like log details
    • with ability to flex parameters, extend options etc.
  • test utilities
    • fuzzy difference
    • different logging/reporting/visualization helpers
    • with output capture capability

-- MikeRovner DateTime(2004-02-27T19:25:32Z)

TestSoftware (last edited 2011-08-30 19:04:15 by c-cf31e353)

Unable to edit the page? See the FrontPage for instructions.