| 54 | } |
| 55 | |
| 56 | void test_parseFolder2() |
| 57 | { |
| 58 | QString source = QFINDTESTDATA("testdata/TexturePackParse"); |
| 59 | |
| 60 | QString folder_rp = FS::PathCombine(source, "another_test_texturefolder"); |
| 61 | TexturePack pack { QFileInfo(folder_rp) }; |
| 62 | |
| 63 | TexturePackUtils::process(pack); |
| 64 | |
| 65 | QVERIFY(pack.description() == "quieres\nfor real"); |
| 66 | } |
| 67 | }; |
| 68 | |
| 69 | QTEST_GUILESS_MAIN(TexturePackParseTest) |
nothing calls this directly
no test coverage detected