| 45 | : CelFunction(desc) {} |
| 46 | |
| 47 | absl::Status Evaluate(absl::Span<const CelValue> args, CelValue* output, |
| 48 | google::protobuf::Arena* arena) const override { |
| 49 | *output = CelValue::CreateInt64(42); |
| 50 | return absl::OkStatus(); |
| 51 | } |
| 52 | }; |
| 53 | |
| 54 | TEST(ActivationTest, CheckValueInsertFindAndRemove) { |
no outgoing calls
no test coverage detected