Differences between revisions 1 and 2
Revision 1 as of 2014-04-06 08:20:06
Size: 603
Editor: techtonik
Comment: add explanation of testing strategies
Revision 2 as of 2014-04-06 09:13:38
Size: 603
Editor: techtonik
Comment: `data-based` seems to be `acceptance tests`
Deletions are marked like this. Additions are marked like this.
Line 9: Line 9:
 * data-based - write testing logic once, and run it over a set of desired output  * acceptance - write testing logic once, and run it over a set of desired output

Testing is matching output produced by your Python code with your expectations.

Testing strategy is what you test and how you do it. There are multiple strategies that can be combined:

  • unit tests - your Python code is limited by specific function and methods
  • performance - measure performance over the time
  • fuzz testing - overload your inputs with garbage to see the response
  • web testing - code is server-side and expected output is web stuff
  • acceptance - write testing logic once, and run it over a set of desired output

See PythonTestingToolsTaxonomy for more details.

Testing (last edited 2014-04-06 09:13:38 by techtonik)

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