| 60 | } |
| 61 | |
| 62 | void init() |
| 63 | { |
| 64 | QVERIFY(ICore::self()->runtimeController()->currentRuntime() == m_initialRuntime); |
| 65 | const auto& availableRuntimes = ICore::self()->runtimeController()->availableRuntimes(); |
| 66 | for (IRuntime* runtime : availableRuntimes) { |
| 67 | if (s_testedImage == runtime->name()) { |
| 68 | ICore::self()->runtimeController()->setCurrentRuntime(runtime); |
| 69 | } |
| 70 | } |
| 71 | QVERIFY(ICore::self()->runtimeController()->currentRuntime() != m_initialRuntime); |
| 72 | } |
| 73 | |
| 74 | void paths() { |
| 75 | auto rt = ICore::self()->runtimeController()->currentRuntime(); |
nothing calls this directly
no test coverage detected