MCPcopy Create free account
hub / github.com/MITK/MITK / SetInputFileNames

Method SetInputFileNames

Modules/Core/TestingHelper/src/mitkRenderingTestHelper.cpp:128–145  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

126}
127
128void 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
147void mitk::RenderingTestHelper::SetViewDirection(mitk::AnatomicalPlane viewDirection)
148{

Callers 1

RenderingTestHelperMethod · 0.95

Calls 1

AddToStorageMethod · 0.95

Tested by

no test coverage detected