(self)
| 42 | output); |
| 43 | |
| 44 | def test_unused_complex(self): |
| 45 | with captured_output() as (out, _err): |
| 46 | self.assertEqual(is_valid(path.join(self.fixturesDir, 'maybe.cc')), |
| 47 | False) |
| 48 | output = out.getvalue() |
| 49 | self.assertIn('does not use "Local"', output); |
| 50 | |
| 51 | def test_unused_simple(self): |
| 52 | with captured_output() as (out, _err): |
nothing calls this directly
no test coverage detected