| 44 | using namespace tiledb::test; |
| 45 | |
| 46 | void remove_array(const std::string& array_name) { |
| 47 | Context ctx; |
| 48 | VFS vfs(ctx); |
| 49 | if (vfs.is_dir(array_name)) |
| 50 | vfs.remove_dir(array_name); |
| 51 | } |
| 52 | |
| 53 | void create_array(const std::string& array_name) { |
| 54 | Context ctx; |