Changes between Version 49 and Version 50 of DeveloperGuidelines/Testing/Selenium
- Timestamp:
- 12/12/12 13:34:06 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DeveloperGuidelines/Testing/Selenium
v49 v50 202 202 203 203 It 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 == 206 This 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 {{{ 208 python web2py.py -S eden -M -R applications/eden/modules/tests/suite.py -A --suite roles 209 }}} 210 204 211 == Load Testing == 205 212 We recommend using [Testing/Load Tsung]