()
| 98 | # ── Go ──────────────────────────────────────────────────────────────────────── |
| 99 | |
| 100 | def test_go_finds_struct(): |
| 101 | r = extract_go(FIXTURES / "sample.go") |
| 102 | assert "error" not in r |
| 103 | assert "Server" in _labels(r) |
| 104 | |
| 105 | def test_go_finds_methods(): |
| 106 | r = extract_go(FIXTURES / "sample.go") |
nothing calls this directly
no test coverage detected