()
| 1095 | |
| 1096 | |
| 1097 | def test_objc_inherits_edge(): |
| 1098 | r = extract_objc(FIXTURES / "sample.m") |
| 1099 | inherits = [e for e in r["edges"] if e["relation"] == "inherits"] |
| 1100 | assert len(inherits) >= 1 |
| 1101 | |
| 1102 | |
| 1103 | def test_objc_splits_inherits_and_implements(): |
nothing calls this directly
no test coverage detected