| 73 | class InTest : public SparkFunctionBaseTest { |
| 74 | protected: |
| 75 | InTest() { |
| 76 | exec::registerVectorFunction( |
| 77 | "testing_dictionary", |
| 78 | TestingDictionaryFunction::signatures(), |
| 79 | std::make_unique<TestingDictionaryFunction>()); |
| 80 | } |
| 81 | |
| 82 | template <typename T> |
| 83 | auto in( |
nothing calls this directly
no test coverage detected