Public Member Functions | |
| def | __init__ (self, suite=None, rpa=False) |
| def | add_test (self, test) |
| def | visit_keyword (self, kw) |
| Implements traversing through the keyword and its child keywords. More... | |
| def | visit_test (self, test) |
| Implements traversing through the test and its keywords. More... | |
Public Member Functions inherited from robotide.lib.robot.model.visitor.SuiteVisitor | |
| def | end_keyword (self, keyword) |
| Called when keyword ends. More... | |
| def | end_message (self, msg) |
| Called when message ends. More... | |
| def | end_suite (self, suite) |
| Called when suite ends. More... | |
| def | end_test (self, test) |
| Called when test ends. More... | |
| def | start_keyword (self, keyword) |
| Called when keyword starts. More... | |
| def | start_message (self, msg) |
| Called when message starts. More... | |
| def | start_suite (self, suite) |
| Called when suite starts. More... | |
| def | start_test (self, test) |
| Called when test starts. More... | |
| def | visit_message (self, msg) |
| Implements visiting the message. More... | |
| def | visit_suite (self, suite) |
| Implements traversing through the suite and its direct children. More... | |
Public Attributes | |
| stats | |
Definition at line 61 of file totalstatistics.py.
| def robotide.lib.robot.model.totalstatistics.TotalStatisticsBuilder.__init__ | ( | self, | |
suite = None, |
|||
rpa = False |
|||
| ) |
Definition at line 63 of file totalstatistics.py.
| def robotide.lib.robot.model.totalstatistics.TotalStatisticsBuilder.add_test | ( | self, | |
| test | |||
| ) |
Definition at line 68 of file totalstatistics.py.
| def robotide.lib.robot.model.totalstatistics.TotalStatisticsBuilder.visit_keyword | ( | self, | |
| kw | |||
| ) |
Implements traversing through the keyword and its child keywords.
Can be overridden to allow modifying the passed in ``kw`` without
calling :func:`start_keyword` or :func:`end_keyword` nor visiting
child keywords.
Reimplemented from robotide.lib.robot.model.visitor.SuiteVisitor.
Definition at line 76 of file totalstatistics.py.
| def robotide.lib.robot.model.totalstatistics.TotalStatisticsBuilder.visit_test | ( | self, | |
| test | |||
| ) |
Implements traversing through the test and its keywords.
Can be overridden to allow modifying the passed in ``test`` without
calling :func:`start_test` or :func:`end_test` nor visiting keywords.
Reimplemented from robotide.lib.robot.model.visitor.SuiteVisitor.
Definition at line 73 of file totalstatistics.py.
| robotide.lib.robot.model.totalstatistics.TotalStatisticsBuilder.stats |
Definition at line 64 of file totalstatistics.py.