template_util ¶
Helper classes and function for the Jinja template.
TemplateUtil ¶
TemplateUtil(output_dir: str)
Helper class for the Jinja template.
Parameters:
-
output_dir(str) –The original output directory of the Robot tests
Source code in src/robot_markdown/template_util.py
9 10 11 12 13 14 15 | |
get_log_messages ¶
get_log_messages(kw: Keyword | TestCase) -> list[Message]
Returns all log messages of a keyword or a test case and all its children.
Parameters:
-
kw(Keyword | TestCase) –Either a Keyword or a Testcase
Retunrs
List of messages
Source code in src/robot_markdown/template_util.py
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | |