Public Member Functions | |
| def | end_suite (self, suite) |
| Called when suite ends. More... | |
| def | visit_keyword (self, keyword) |
| 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_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... | |
Definition at line 19 of file suiteteardownfailed.py.
| def robotide.lib.robot.result.suiteteardownfailed.SuiteTeardownFailureHandler.end_suite | ( | self, | |
| suite | |||
| ) |
Called when suite ends.
Default implementation does nothing.
Reimplemented from robotide.lib.robot.model.visitor.SuiteVisitor.
Definition at line 21 of file suiteteardownfailed.py.
| def robotide.lib.robot.result.suiteteardownfailed.SuiteTeardownFailureHandler.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 30 of file suiteteardownfailed.py.
| def robotide.lib.robot.result.suiteteardownfailed.SuiteTeardownFailureHandler.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 27 of file suiteteardownfailed.py.