| 42 | } |
| 43 | |
| 44 | void test_parseFolder() |
| 45 | { |
| 46 | QString source = QFINDTESTDATA("testdata/TexturePackParse"); |
| 47 | |
| 48 | QString folder_rp = FS::PathCombine(source, "test_texturefolder"); |
| 49 | TexturePack pack { QFileInfo(folder_rp) }; |
| 50 | |
| 51 | TexturePackUtils::processFolder(pack); |
| 52 | |
| 53 | QVERIFY(pack.description() == "Some texture pack surely"); |
| 54 | } |
| 55 | |
| 56 | void test_parseFolder2() |
| 57 | { |
nothing calls this directly
no test coverage detected