| 26 | using namespace vsag; |
| 27 | |
| 28 | void |
| 29 | TestSparseGraphDataCell(const GraphInterfaceParamPtr& param, |
| 30 | const IndexCommonParam& common_param, |
| 31 | bool test_delete) { |
| 32 | auto count = GENERATE(1000, 2000); |
| 33 | auto max_id = 10000; |
| 34 | |
| 35 | auto graph = GraphInterface::MakeInstance(param, common_param); |
| 36 | GraphInterfaceTest test(graph); |
| 37 | auto other = GraphInterface::MakeInstance(param, common_param); |
| 38 | test.BasicTest(max_id, count, other, test_delete); |
| 39 | } |
| 40 | |
| 41 | TEST_CASE("SparseGraphDataCell Basic Test", "[ut][SparseGraphDataCell]") { |
| 42 | auto allocator = SafeAllocator::FactoryDefaultAllocator(); |
no test coverage detected