| 30 | typedef int64_t (*add_vector_func_t)(int64_t* elements, int nelements); |
| 31 | |
| 32 | class TestExpressionRegistry : public ::testing::Test { |
| 33 | protected: |
| 34 | std::shared_ptr<FunctionRegistry> registry_ = default_function_registry(); |
| 35 | }; |
| 36 | |
| 37 | // Verify all functions in registry are exported. |
| 38 | TEST_F(TestExpressionRegistry, VerifySupportedFunctions) { |
nothing calls this directly
no test coverage detected