| 41 | struct TestRegistry : public ::testing::TestWithParam<TestRegistryParams> {}; |
| 42 | |
| 43 | TEST(TestRegistry, CreateBuiltInRegistry) { |
| 44 | // This does DCHECK_OK internally for now so this will fail in debug builds |
| 45 | // if there is a problem initializing the global function registry |
| 46 | FunctionRegistry* registry = GetFunctionRegistry(); |
| 47 | ARROW_UNUSED(registry); |
| 48 | } |
| 49 | |
| 50 | TEST_P(TestRegistry, Basics) { |
| 51 | auto registry_factory = std::get<0>(GetParam()); |
nothing calls this directly
no test coverage detected