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 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.