(self)
| 67 | output); |
| 68 | |
| 69 | def test_valid(self): |
| 70 | with captured_output() as (out, _err): |
| 71 | self.assertEqual(is_valid(path.join(self.fixturesDir, 'valid.cc')), |
| 72 | True) |
| 73 | output = out.getvalue() |
| 74 | self.assertEqual(output, ''); |
| 75 | |
| 76 | if __name__ == '__main__': |
| 77 | unittest.main() |
nothing calls this directly
no test coverage detected