Changes between Version 4 and Version 5 of DeveloperGuidelinesTesting


Ignore:
Timestamp:
01/11/09 17:55:01 (15 years ago)
Author:
Fran Boon
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DeveloperGuidelinesTesting

    v4 v5  
    11DeveloperGuidelines
    22
    3 == Testing ==
     3= Testing =
    44"A bug is a test case you haven't written yet" [[BR]]
    55"Unit Tests allow merciless refactoring": http://diveintopython.org/refactoring/refactoring.html
     
    88 * http://vallista.idyll.org/~grig/articles/
    99
     10== Unit Tests ==
     11Should we use doctests?
     12* http://agiletesting.blogspot.com/2005/01/python-unit-testing-part-2-doctest.html
     13
     14== Usability Tests ==
     15=== Accessibility ===
     16 * Are we XHTML 1.0 compliant?
     17 * Are we usable without JavaScript?
     18
     19== Performance Tests ==
     20Whilst the Web2Py framework is fast, we should check that we're not doing anything stupid to slow it down:
     21 * http://groups.google.com/group/web2py/browse_thread/thread/cf5c5bd53bc42d49
     22
     23== Security Tests ==
     24Whilst the Web2Py framework is secure by design, we should validate this:
     25 * http://mdp.cti.depaul.edu/examples/default/features
    1026----
    1127DeveloperGuidelines