(self, expectation)
| 271 | assert expectation not in self |
| 272 | |
| 273 | def expect_no_new(self, expectation): |
| 274 | self.expect_frozen() |
| 275 | assert expectation not in self.new() |
| 276 | |
| 277 | def _explain_how_realized(self, expectation, reasons): |
| 278 | message = f"Realized {expectation!r}" |
nothing calls this directly
no test coverage detected