Changes between Version 12 and Version 13 of DeveloperGuidelines/Testing/EdenTest/WriteTestcase/Advanced
- Timestamp:
- 03/18/19 18:32:37 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DeveloperGuidelines/Testing/EdenTest/WriteTestcase/Advanced
v12 v13 3 3 Continuing from the tutorial on [http://eden.sahanafoundation.org/wiki/DeveloperGuidelines/Testing/EdenTest/WriteTestcase How to write a testcase?], this article focuses on the advanced aspects of !EdenTest. 4 4 5 If you have implemented '''Login with invalid email and passwd should fail''', your testsuite login_funtionality. txt should look like this.5 If you have implemented '''Login with invalid email and passwd should fail''', your testsuite login_funtionality.robot should look like this. 6 6 {{{ 7 7 *** Settings *** 8 Resource ../resources/main.txt 9 8 Resource ../resources/main.robot 10 9 11 10 *** Test Cases *** … … 29 28 Page Should Contain Invalid login 30 29 }}} 31 32 30 == Variables == 33 31