| 84 | } |
| 85 | |
| 86 | TEST(RegisterLogicalFunctions, NotStrictlyFalseRegistered) { |
| 87 | FunctionRegistry registry; |
| 88 | RuntimeOptions options; |
| 89 | |
| 90 | ASSERT_OK(RegisterLogicalFunctions(registry, options)); |
| 91 | |
| 92 | EXPECT_THAT( |
| 93 | registry.FindStaticOverloads(builtin::kNotStrictlyFalse, |
| 94 | /*receiver_style=*/false, {Kind::kAny}), |
| 95 | ElementsAre(DescriptorIs(builtin::kNotStrictlyFalse, |
| 96 | std::vector<Kind>{Kind::kBool}, false))); |
| 97 | } |
| 98 | |
| 99 | TEST(RegisterLogicalFunctions, LogicalNotRegistered) { |
| 100 | FunctionRegistry registry; |
nothing calls this directly
no test coverage detected