| 40 | }; |
| 41 | |
| 42 | TEST_F(AndFunctionCallTest, AllTrue_ReturnsTrue) { |
| 43 | auto r = fc.execute({{"values", json::array({true, true, true})}}); |
| 44 | ASSERT_TRUE(isSuccess(r)); |
| 45 | EXPECT_EQ(r.getValue(), true); |
| 46 | } |
| 47 | |
| 48 | TEST_F(AndFunctionCallTest, OneFalse_ReturnsFalse) { |
| 49 | auto r = fc.execute({{"values", json::array({true, false, true})}}); |