(tmpdir)
| 103 | __check_symbol_database(tmpdir, 'struct S {};') |
| 104 | |
| 105 | def test_ast_calculations(tmpdir): |
| 106 | __check_ast(tmpdir, 'int x = 5; int y = (x + 4) * 2;') |
| 107 | __check_ast(tmpdir, 'long long dostuff(int x) { return x ? 3 : 5; }') |
| 108 | |
| 109 | def test_ast_control_flow(tmpdir): |
| 110 | __check_ast(tmpdir, 'void foo(int x) { if (x > 5){} }') |
nothing calls this directly
no test coverage detected