()
| 712 | assert any("ApiClient" in l for l in _labels(r)) |
| 713 | |
| 714 | def test_php_finds_methods(): |
| 715 | r = extract_php(FIXTURES / "sample.php") |
| 716 | labels = _labels(r) |
| 717 | assert any("get" in l for l in labels) |
| 718 | assert any("post" in l for l in labels) |
| 719 | |
| 720 | def test_php_finds_function(): |
| 721 | r = extract_php(FIXTURES / "sample.php") |
nothing calls this directly
no test coverage detected