| 35 | // ============================================================================ |
| 36 | |
| 37 | class AndFunctionCallTest : public ::testing::Test { |
| 38 | protected: |
| 39 | AndFunctionCall fc; |
| 40 | }; |
| 41 | |
| 42 | TEST_F(AndFunctionCallTest, AllTrue_ReturnsTrue) { |
| 43 | auto r = fc.execute({{"values", json::array({true, true, true})}}); |
nothing calls this directly
no outgoing calls
no test coverage detected