(self)
| 2116 | assert pc.value == "Hello" |
| 2117 | |
| 2118 | def test_iadd(self): |
| 2119 | pc = PrintContainer() |
| 2120 | pc += "World" |
| 2121 | assert pc.value == "World" |
| 2122 | |
| 2123 | def test_str(self): |
| 2124 | pc = PrintContainer() |
nothing calls this directly
no test coverage detected