Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 566 Bytes

example.rst

File metadata and controls

25 lines (16 loc) · 566 Bytes

Document with embedded tests

With the Robot Framework space separated format, a minimal test suite must contain the *** Test Cases *** header and at least one test case, like:

*** Test Cases ***

Foo is always foo
    Should be equal  foo  foo

But the *** Test Cases ***-header may be followed by as many tests as required, like:

*** Test Cases ***

Foo is still foo
    Should be equal  foo  foo

Foo is never bar
    Should not be equal  foo  bar