Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions HowToWriteGoodTestCases.rst
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,22 @@ __ http://robotframework.org/robotframework/latest/libraries/BuiltIn.html#Run%20

Documentation
=============
- Settings

Is used to import available keyword libraries or resources (resources are plain text files like test suites, but without test cases) and define possible setup and teardown keywords.

- Variables

Is used to define available robot variables with their default values, or override variables defined in imported resources.

- Test Cases

Is used to define runnable tests cases, which are made of test clauses calling test keywords.

- Keywords

Is used to define new user keywords, which may re-use existing keywords from imported libraries or resource files.


Test suite documentation
------------------------
Expand Down