| 1229 | } |
| 1230 | |
| 1231 | TestEngine *TestValidator::getEngine() |
| 1232 | { |
| 1233 | qputenv("RECURSION", QByteArrayLiteral("100")); |
| 1234 | auto app = new TestApplication; |
| 1235 | auto engine = new TestEngine(app, QVariantMap()); |
| 1236 | new ValidatorTest(app); |
| 1237 | if (!engine->init()) { |
| 1238 | return nullptr; |
| 1239 | } |
| 1240 | return engine; |
| 1241 | } |
| 1242 | |
| 1243 | void TestValidator::cleanupTestCase() |
| 1244 | { |