| 96 | } |
| 97 | |
| 98 | TEST(AsyncLocalFile, writeAndRead) { |
| 99 | auto tempFile = ::exec::test::TempFilePath::create(); |
| 100 | const auto& filename = tempFile->path.c_str(); |
| 101 | remove(filename); |
| 102 | { |
| 103 | AsyncLocalWriteFile writeFile(filename, false, true); |
| 104 | writeDataAsync(&writeFile); |
| 105 | } |
| 106 | AsyncLocalReadFile readFile(filename); |
| 107 | readDataAsync(&readFile); |
| 108 | } |
| 109 | |
| 110 | TEST(AsyncLocalFile, viaRegistry) { |
| 111 | filesystems::registerLocalFileSystem(); |
nothing calls this directly
no test coverage detected