| 42 | using namespace tiledb; |
| 43 | |
| 44 | void check_dump(const Attribute& attr, const std::string& gold_out) { |
| 45 | std::stringstream ss; |
| 46 | ss << attr; |
| 47 | CHECK(gold_out == ss.str()); |
| 48 | |
| 49 | // Clean up |
| 50 | Context ctx; |
| 51 | VFS vfs(ctx); |
| 52 | } |
| 53 | |
| 54 | void create_array_1d( |
| 55 | const std::string& array_name, |
no test coverage detected