------------------------------------------------------------------------------
| 194 | |
| 195 | //------------------------------------------------------------------------------ |
| 196 | char* vtkTesting::GetArgument(const char* argName) |
| 197 | { |
| 198 | string argValue = vtkTestingGetArgOrEnvOrDefault(argName, this->Args, "", ""); |
| 199 | |
| 200 | char* cArgValue = new char[argValue.size() + 1]; |
| 201 | strcpy(cArgValue, argValue.c_str()); |
| 202 | |
| 203 | return cArgValue; |
| 204 | } |
| 205 | //------------------------------------------------------------------------------ |
| 206 | void vtkTesting::CleanArguments() |
| 207 | { |
nothing calls this directly
no test coverage detected