------------------------------------------------------------------------------
| 322 | } |
| 323 | //------------------------------------------------------------------------------ |
| 324 | int vtkTesting::IsValidImageSpecified() |
| 325 | { |
| 326 | for (size_t i = 1; i < this->Args.size(); ++i) |
| 327 | { |
| 328 | if (this->Args[i - 1] == "-V") |
| 329 | { |
| 330 | return 1; |
| 331 | } |
| 332 | } |
| 333 | return 0; |
| 334 | } |
| 335 | //------------------------------------------------------------------------------ |
| 336 | char* vtkTesting::IncrementFileName(const char* fname, int count) |
| 337 | { |
no test coverage detected