| 126 | } |
| 127 | |
| 128 | void mitk::RenderingTestHelper::SetInputFileNames(int argc, char *argv[]) |
| 129 | { |
| 130 | // i is set 1, because 0 is the testname as string |
| 131 | // parse parameters |
| 132 | for (int i = 1; i < argc; ++i) |
| 133 | { |
| 134 | // add everything to a list but -T and -V |
| 135 | std::string tmp = argv[i]; |
| 136 | if ((tmp.compare("-T")) && (tmp.compare("-V"))) |
| 137 | { |
| 138 | this->AddToStorage(tmp); |
| 139 | } |
| 140 | else |
| 141 | { |
| 142 | break; |
| 143 | } |
| 144 | } |
| 145 | } |
| 146 | |
| 147 | void mitk::RenderingTestHelper::SetViewDirection(mitk::AnatomicalPlane viewDirection) |
| 148 | { |
no test coverage detected