()
| 83 | # ── .csproj ────────────────────────────────────────────────────────────────── |
| 84 | |
| 85 | def test_csproj_packages(): |
| 86 | r = extract_csproj(FIXTURES / "sample.csproj") |
| 87 | assert "error" not in r |
| 88 | labels = _labels(r) |
| 89 | assert any("MediatR" in l for l in labels) |
| 90 | assert any("FluentValidation" in l for l in labels) |
| 91 | assert any("Swashbuckle" in l for l in labels) |
| 92 | |
| 93 | |
| 94 | def test_csproj_project_references(): |
nothing calls this directly
no test coverage detected