| 109 | } |
| 110 | |
| 111 | DummyView getViewForId(const Valdi::SharedViewNodeTree& viewNodeTree, std::string id) { |
| 112 | auto viewNode = getViewNodeForId(viewNodeTree, id); |
| 113 | if (viewNode == nullptr) { |
| 114 | return getDummyView(nullptr); |
| 115 | } |
| 116 | |
| 117 | return getDummyView(viewNode->getViewAndDisablePooling()); |
| 118 | } |
| 119 | |
| 120 | Valdi::Path resolveTestPath(const std::string& path) { |
| 121 | char cwdBuffer[PATH_MAX]; |
no test coverage detected