Changes between Version 3 and Version 4 of DeveloperGuidelines/Testing/EdenTest/WriteTestcase/Advanced


Ignore:
Timestamp:
06/09/14 06:38:31 (10 years ago)
Author:
Arnav Sharma
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DeveloperGuidelines/Testing/EdenTest/WriteTestcase/Advanced

    v3 v4  
    7979
    8080User Keywords are new higher-level keywords by combining existing keywords together. These keywords are called user keywords to differentiate them from lowest level library keywords that are implemented in test libraries. The syntax for creating user keywords is very close to the syntax for creating test cases, which makes it easy to learn.
     81
     82'''Keywords must not anticipate! ''' or to say it simply never shall a keyword make any assertions of its own! All the assertions (pass fail situations) like `Page Should Contain [text]` etc should be in the testcase not in the keyword.
    8183
    8284=== Implementing User Keywords ===