(tmpdir)
| 113 | __check_ast(tmpdir, 'void foo(int a, int b, int c) { foo(a,b,c); }') |
| 114 | |
| 115 | def test_ast(tmpdir): |
| 116 | __check_ast(tmpdir, 'struct S { int x; }; S* foo() { return new S(); }') |
| 117 | |
| 118 | def test_log(tmpdir): |
| 119 | test_file = os.path.join(tmpdir, 'test.cpp') |
nothing calls this directly
no test coverage detected