(self)
| 2131 | assert repr(pc) == "PrintContainer(Hello)" |
| 2132 | |
| 2133 | def test_len(self): |
| 2134 | pc = PrintContainer() |
| 2135 | pc.append("Hello") |
| 2136 | assert len(pc) == 5 |
| 2137 | |
| 2138 | |
| 2139 | def test_fix_final_answer_code(): |
nothing calls this directly
no test coverage detected