| 44 | QTest::newRow("doom") << "id.software:doom:1.666:demons@wad" << "id/software/doom/1.666/doom-1.666-demons.wad"; |
| 45 | } |
| 46 | void test_Path() |
| 47 | { |
| 48 | QFETCH(QString, spec); |
| 49 | QFETCH(QString, expected); |
| 50 | |
| 51 | QString converted = GradleSpecifier(spec).toPath(); |
| 52 | |
| 53 | QCOMPARE(converted, expected); |
| 54 | } |
| 55 | void test_Negative_data() |
| 56 | { |
| 57 | QTest::addColumn<QString>("input"); |
nothing calls this directly
no test coverage detected