(tmpdir)
| 94 | |
| 95 | |
| 96 | def test_sln_invalid_file(tmpdir): |
| 97 | content = "some file" |
| 98 | |
| 99 | expected = "Visual Studio solution file header not found" |
| 100 | |
| 101 | __test_project_error(tmpdir, "sln", content, expected) |
| 102 | |
| 103 | |
| 104 | def test_sln_no_header(tmpdir): |
nothing calls this directly
no test coverage detected