Skip to content

Latest commit

 

History

History
43 lines (31 loc) · 1.37 KB

description.rst

File metadata and controls

43 lines (31 loc) · 1.37 KB

Description of a test case

Allure-robotframework automatically converts documentation of a Robot Framework test case into allure test case description. The documentation can be set with the [Documentation] test setting:

*** Test Cases ***
Single line doc from the setting
    [Documentation]     This documentation will appear as allure description
    No Operation

The documentation may span multiple lines:

*** Test Cases ***
Multiline doc from the setting
    [Documentation]     This documentation contains multiple lines of text.
    ...                 It will also appear as allure description.
    No Operation

The Set Test Documentation keyword

The documentation can also be set dynamically with the Set Test Documentation keyword:

*** Test Cases ***
Multiline doc from the keyword
    Set Test Documentation  This documentation will appear as allure description.