(tmpdir)
| 140 | |
| 141 | |
| 142 | def test_slnx_no_xml_root(tmpdir): |
| 143 | content = '<?xml version="1.0" encoding="utf-8"?>' |
| 144 | |
| 145 | expected = "Visual Studio solution file has no XML root node" |
| 146 | |
| 147 | __test_project_error(tmpdir, "slnx", content, expected) |
| 148 | |
| 149 | |
| 150 | def test_slnx_no_projects(tmpdir): |
nothing calls this directly
no test coverage detected