| 72 | } |
| 73 | |
| 74 | void paths() { |
| 75 | auto rt = ICore::self()->runtimeController()->currentRuntime(); |
| 76 | QVERIFY(rt); |
| 77 | |
| 78 | const Path root("/"); |
| 79 | const Path hostDir = rt->pathInHost(root); |
| 80 | QCOMPARE(root, rt->pathInRuntime(hostDir)); |
| 81 | } |
| 82 | |
| 83 | void projectPath() { |
| 84 | auto rt = ICore::self()->runtimeController()->currentRuntime(); |
nothing calls this directly
no test coverage detected