| 324 | } |
| 325 | |
| 326 | void CheckDispatchExactFails(std::string func_name, std::vector<TypeHolder> types) { |
| 327 | ASSERT_OK_AND_ASSIGN(auto function, GetFunctionRegistry()->GetFunction(func_name)); |
| 328 | ASSERT_NOT_OK(function->DispatchExact(types)); |
| 329 | } |
| 330 | |
| 331 | void CheckDispatchFails(std::string func_name, std::vector<TypeHolder> types) { |
| 332 | ASSERT_OK_AND_ASSIGN(auto function, GetFunctionRegistry()->GetFunction(func_name)); |
no test coverage detected