Changes between Version 49 and Version 50 of DeveloperGuidelines/Testing/Selenium


Ignore:
Timestamp:
12/12/12 13:34:06 (12 years ago)
Author:
Michael Howden
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DeveloperGuidelines/Testing/Selenium

    v49 v50  
    202202
    203203It can be a very powerful development strategy - especially for back-end APIs - to first implement unit test cases for the functionality you intend to implement before actually implementing it. Apart from preventing bugs, this helps you to validate your design against requirements, and to keep the implementation simple and focussed. Additionally, the test cases can be a rich source of code samples how to apply your API methods.
     204
     205== Role Tests ==
     206This test is used to check the permissions of user roles. Currently is limited to the IFRC (Red Cross) roles for RMS, but could be extended:
     207{{{
     208python web2py.py -S eden -M -R applications/eden/modules/tests/suite.py -A --suite roles
     209}}}
     210
    204211== Load Testing ==
    205212We recommend using [Testing/Load Tsung]