(tmpdir)
| 102 | |
| 103 | |
| 104 | def test_sln_no_header(tmpdir): |
| 105 | content = "\xEF\xBB\xBF\r\n" \ |
| 106 | "some header" |
| 107 | |
| 108 | expected = "Visual Studio solution file header not found" |
| 109 | |
| 110 | __test_project_error(tmpdir, "sln", content, expected) |
| 111 | |
| 112 | |
| 113 | def test_sln_no_projects(tmpdir): |
nothing calls this directly
no test coverage detected