(tmpdir)
| 111 | |
| 112 | |
| 113 | def test_sln_no_projects(tmpdir): |
| 114 | content = "\xEF\xBB\xBF\r\n" \ |
| 115 | "Microsoft Visual Studio Solution File, Format Version 12.00\r\n" |
| 116 | |
| 117 | expected = "no projects found in Visual Studio solution file" |
| 118 | |
| 119 | __test_project_error(tmpdir, "sln", content, expected) |
| 120 | |
| 121 | |
| 122 | def test_sln_project_file_not_found(tmpdir): |
nothing calls this directly
no test coverage detected