()
| 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") |
| 177 | labels = _labels(r) |
| 178 | # C++ extractor captures the constructor and public-visible methods |
| 179 | assert any("HttpClient" in l for l in labels) |
| 180 | |
| 181 | def test_cpp_finds_includes(): |
| 182 | r = extract_cpp(FIXTURES / "sample.cpp") |
nothing calls this directly
no test coverage detected