(self)
| 2111 | assert pc.value == "" |
| 2112 | |
| 2113 | def test_append(self): |
| 2114 | pc = PrintContainer() |
| 2115 | pc.append("Hello") |
| 2116 | assert pc.value == "Hello" |
| 2117 | |
| 2118 | def test_iadd(self): |
| 2119 | pc = PrintContainer() |
nothing calls this directly
no test coverage detected