()
| 2284 | |
| 2285 | |
| 2286 | def test_groovy_finds_methods(): |
| 2287 | r = extract_groovy(FIXTURES / "sample.groovy") |
| 2288 | labels = _labels(r) |
| 2289 | assert any("process" in l for l in labels) |
| 2290 | assert any("reset" in l for l in labels) |
| 2291 | |
| 2292 | |
| 2293 | def test_groovy_finds_imports(): |
nothing calls this directly
no test coverage detected