Changes between Version 3 and Version 4 of DeveloperGuidelines/Testing/EdenTest
- Timestamp:
- 05/16/14 12:40:48 (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DeveloperGuidelines/Testing/EdenTest
v3 v4 14 14 == Installation guidelines == 15 15 16 ! RobotEdenrequires three python packages.16 !EdenTest requires three python packages. 17 17 18 18 * [https://code.google.com/p/robotframework/wiki/Installation robotframework] … … 38 38 }}} 39 39 40 If you have successfully installed the packages, you should be able to run ! RobotEden.40 If you have successfully installed the packages, you should be able to run !EdenTest. 41 41 42 42 43 43 == Directory structure == 44 44 45 Before running ! RobotEden, it is important to have a mental picture of the directory structure of !RobotEdenand the importance of its sub-directories.45 Before running !EdenTest, it is important to have a mental picture of the directory structure of !EdenTest and the importance of its sub-directories. 46 46 47 47 {{{ … … 84 84 * '''testsuites''': Testsuites directory contains all the different testsuites differentiated based on the basis of functionality they test eg: '''hrm'''. Inside each testcase, there is at least one .txt file which contains the testcases. 85 85 86 == Using ! RobotEden==86 == Using !EdenTest == 87 87 88 88 === Start Sahana Eden === … … 106 106 107 107 === Creating config.py === 108 Before running the tests, there has to exist a '''config.py''' file inside the execution directory. It contains the various settings variables that are imported by RobotEden. Copy the config.example.py into config.py by108 Before running the tests, there has to exist a '''config.py''' file inside the execution directory. It contains the various settings variables that are imported by !EdenTest. Copy the config.example.py into config.py by 109 109 [assuming the current working directory is /tests/] 110 110 {{{ … … 114 114 115 115 116 === Running ! RobotEden===116 === Running !EdenTest === 117 117 118 118 Robot Framework test cases are executed from the command line. The command used to run the tests is [http://robotframework.googlecode.com/hg/doc/userguide/RobotFrameworkUserGuide.html?r=2.8.4#all-command-line-options pybot]. The link redirects to the wiki where the command line arguments are documented. You can also use `pybot --help` for the same.