(self)
| 2126 | assert str(pc) == "Hello" |
| 2127 | |
| 2128 | def test_repr(self): |
| 2129 | pc = PrintContainer() |
| 2130 | pc.append("Hello") |
| 2131 | assert repr(pc) == "PrintContainer(Hello)" |
| 2132 | |
| 2133 | def test_len(self): |
| 2134 | pc = PrintContainer() |
nothing calls this directly
no test coverage detected