All test inherits this class
| 6 | |
| 7 | //All test inherits this class |
| 8 | class ICopyBase |
| 9 | { |
| 10 | public: |
| 11 | /** |
| 12 | * The methods to be called to run the copy/move program or apis |
| 13 | * |
| 14 | * @param paths All the files to be copied or moved |
| 15 | * @return Whether the call is success |
| 16 | */ |
| 17 | virtual bool Run(std::vector<TestOperation>const& paths) = 0; |
| 18 | |
| 19 | /** |
| 20 | * Return the name/id of this implementation |
| 21 | */ |
| 22 | virtual std::string GetName() const = 0; |
| 23 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected