| 165 | } |
| 166 | |
| 167 | arrow::Status RunExamples(const std::string& path_to_file) { |
| 168 | ARROW_RETURN_NOT_OK(WriteEncryptedFile(path_to_file)); |
| 169 | ARROW_RETURN_NOT_OK(ReadEncryptedFile(path_to_file)); |
| 170 | return arrow::Status::OK(); |
| 171 | } |
| 172 | |
| 173 | int main(int argc, char** argv) { |
| 174 | if (argc != 2) { |
no test coverage detected