()
| 1123 | |
| 1124 | |
| 1125 | def test_objc_no_dangling_edges(): |
| 1126 | r = extract_objc(FIXTURES / "sample.m") |
| 1127 | node_ids = {n["id"] for n in r["nodes"]} |
| 1128 | for e in r["edges"]: |
| 1129 | assert e["source"] in node_ids, f"Dangling source: {e}" |
| 1130 | |
| 1131 | |
| 1132 | def test_objc_resolves_self_method_calls(): |
nothing calls this directly
no test coverage detected