(tmpdir)
| 180 | |
| 181 | |
| 182 | def test_vcxproj_no_xml_root(tmpdir): |
| 183 | content = '<?xml version="1.0" encoding="utf-8"?>' |
| 184 | |
| 185 | expected = "Visual Studio project file has no XML root node" |
| 186 | |
| 187 | __test_project_error(tmpdir, "vcxproj", content, expected) |
| 188 | |
| 189 | |
| 190 | def test_bpr_no_xml_root(tmpdir): |
nothing calls this directly
no test coverage detected