(self)
| 162 | return |
| 163 | |
| 164 | def has_next_frid(self) -> bool: |
| 165 | next_frid = plain_spec.get_next_frid(self.plain_source_tree, self.frid_context.frid) |
| 166 | if self.render_range is None or len(self.render_range) == 0: |
| 167 | return next_frid is not None |
| 168 | |
| 169 | return next_frid is not None and int(next_frid) <= int(self.render_range[-1]) |
| 170 | |
| 171 | def finish_implementing_frid(self): |
| 172 | self.functional_requirements_render_attempts_failed_unit_during_conformance_tests = 0 |
nothing calls this directly
no test coverage detected