(self)
| 2121 | assert pc.value == "World" |
| 2122 | |
| 2123 | def test_str(self): |
| 2124 | pc = PrintContainer() |
| 2125 | pc.append("Hello") |
| 2126 | assert str(pc) == "Hello" |
| 2127 | |
| 2128 | def test_repr(self): |
| 2129 | pc = PrintContainer() |
nothing calls this directly
no test coverage detected