(self)
| 70 | |
| 71 | class TestAssertPrints(unittest.TestCase): |
| 72 | def test_passing(self): |
| 73 | with tt.AssertPrints("abc"): |
| 74 | print("abcd") |
| 75 | print("def") |
| 76 | print(b"ghi") |
| 77 | |
| 78 | def test_failing(self): |
| 79 | def func(): |
nothing calls this directly
no outgoing calls
no test coverage detected