()
| 108 | |
| 109 | |
| 110 | def test_csproj_invalid_xml(): |
| 111 | with tempfile.NamedTemporaryFile(suffix=".csproj", mode="w", delete=False) as f: |
| 112 | f.write("<Project><Invalid></Project>") |
| 113 | f.flush() |
| 114 | r = extract_csproj(Path(f.name)) |
| 115 | assert "error" in r |
| 116 | |
| 117 | |
| 118 | # ── .xaml ──────────────────────────────────────────────────────────────────── |
nothing calls this directly
no test coverage detected