| 9 | |
| 10 | |
| 11 | void TestJSPlugin::check_JSPluginSpec() |
| 12 | { |
| 13 | QFETCH(QString, iniFileName); |
| 14 | QFETCH(QString, AppName); |
| 15 | QFETCH(QString, AppType); |
| 16 | QFETCH(QString, AppGUID); |
| 17 | QFETCH(int, ModuleCount); |
| 18 | QFETCH(int, ManifestVersion); |
| 19 | QFETCH(bool, isValid); |
| 20 | |
| 21 | JSPluginSpec plugin(iniFileName, this); |
| 22 | |
| 23 | QCOMPARE(plugin.name(), AppName); |
| 24 | QCOMPARE(plugin.type(), AppType); |
| 25 | QCOMPARE(plugin.guid(), AppGUID); |
| 26 | QCOMPARE(plugin.moduleCount(), ModuleCount); |
| 27 | QCOMPARE(plugin.manifestVersion(), ManifestVersion); |
| 28 | QCOMPARE(plugin.validate(), isValid); |
| 29 | } |
| 30 | |
| 31 | |
| 32 | void TestJSPlugin::check_JSPluginSpec_data() |
nothing calls this directly
no test coverage detected