()
| 1076 | |
| 1077 | |
| 1078 | def test_objc_finds_methods(): |
| 1079 | r = extract_objc(FIXTURES / "sample.m") |
| 1080 | labels = [n["label"] for n in r["nodes"]] |
| 1081 | assert any("speak" in l or "fetch" in l or "initWithName" in l for l in labels) |
| 1082 | |
| 1083 | |
| 1084 | def test_objc_finds_imports(): |
nothing calls this directly
no test coverage detected