()
| 64 | # ── Go ──────────────────────────────────────────────────────────────────────── |
| 65 | |
| 66 | def test_go_finds_struct(): |
| 67 | r = extract_go(FIXTURES / "sample.go") |
| 68 | assert "error" not in r |
| 69 | assert "Server" in _labels(r) |
| 70 | |
| 71 | def test_go_finds_methods(): |
| 72 | r = extract_go(FIXTURES / "sample.go") |
nothing calls this directly
no test coverage detected