()
| 708 | assert "error" not in r |
| 709 | |
| 710 | def test_php_finds_class(): |
| 711 | r = extract_php(FIXTURES / "sample.php") |
| 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") |
nothing calls this directly
no test coverage detected