Create a FileTransform.
| 37 | |
| 38 | // Create a FileTransform. |
| 39 | FileTransformRcPtr CreateFileTransform(const std::string & fileName) |
| 40 | { |
| 41 | const std::string filePath(GetTestFilesDir() + "/" + fileName); |
| 42 | |
| 43 | // Create a FileTransform |
| 44 | FileTransformRcPtr pFileTransform = FileTransform::Create(); |
| 45 | pFileTransform->setSrc(filePath.c_str()); |
| 46 | |
| 47 | return pFileTransform; |
| 48 | } |
| 49 | |
| 50 | void BuildOpsTest(OpRcPtrVec & fileOps, |
| 51 | const std::string & fileName, |
no test coverage detected