()
| 169 | assert "error" not in r |
| 170 | |
| 171 | def test_cpp_finds_class(): |
| 172 | r = extract_cpp(FIXTURES / "sample.cpp") |
| 173 | assert any("HttpClient" in l for l in _labels(r)) |
| 174 | |
| 175 | def test_cpp_finds_methods(): |
| 176 | r = extract_cpp(FIXTURES / "sample.cpp") |
nothing calls this directly
no test coverage detected