(self)
| 112 | self.machine.dispatch(triggers.HANDLE_ERROR) |
| 113 | |
| 114 | def create_snapshot(self) -> RenderContextSnapshot: |
| 115 | return RenderContextSnapshot( |
| 116 | frid_context=deepcopy(self.frid_context) if self.frid_context else None, |
| 117 | conformance_tests_running_context=( |
| 118 | deepcopy(self.conformance_tests_running_context) if self.conformance_tests_running_context else None |
| 119 | ), |
| 120 | unit_tests_running_context=( |
| 121 | deepcopy(self.unit_tests_running_context) if self.unit_tests_running_context else None |
| 122 | ), |
| 123 | script_execution_history=deepcopy(self.script_execution_history), |
| 124 | module_name=self.module_name, |
| 125 | ) |
| 126 | |
| 127 | def get_required_modules_functionalities(self): |
| 128 | required_modules_functionalities = {} |
no test coverage detected