()
| 76 | assert any(e["relation"] == "calls" for e in r["edges"]) |
| 77 | |
| 78 | def test_c_calls_are_inferred(): |
| 79 | r = extract_c(FIXTURES / "sample.c") |
| 80 | for e in r["edges"]: |
| 81 | if e["relation"] == "calls": |
| 82 | assert e["confidence"] == "INFERRED" |
| 83 | |
| 84 | |
| 85 | # ── C++ ─────────────────────────────────────────────────────────────────────── |
nothing calls this directly
no test coverage detected