| 85 | } |
| 86 | |
| 87 | std::shared_ptr<Configuration> TestConfigWithFunctionRegistry( |
| 88 | std::shared_ptr<FunctionRegistry> registry) { |
| 89 | return BuildConfigurationWithRegistry(std::move(registry), [](auto reg) { |
| 90 | return reg->Register({GetTestExternalFunction()}, GetTestFunctionLLVMIRPath()); |
| 91 | }); |
| 92 | } |
| 93 | |
| 94 | class MultiplyHolder : public FunctionHolder { |
| 95 | public: |
no test coverage detected