| 38 | Kind::kDouble, Kind::kBytes, Kind::kDuration, Kind::kTimestamp}; |
| 39 | |
| 40 | TEST(RegisterComparisonFunctionsTest, LessThanDefined) { |
| 41 | RuntimeOptions default_options; |
| 42 | FunctionRegistry registry; |
| 43 | ASSERT_OK(RegisterComparisonFunctions(registry, default_options)); |
| 44 | for (Kind kind : kOrderableTypes) { |
| 45 | EXPECT_THAT(registry, DefinesHomogenousOverload(builtin::kLess, kind)); |
| 46 | } |
| 47 | } |
| 48 | |
| 49 | TEST(RegisterComparisonFunctionsTest, LessThanOrEqualDefined) { |
| 50 | RuntimeOptions default_options; |
nothing calls this directly
no test coverage detected