| 113 | } |
| 114 | |
| 115 | google::protobuf::MessageFactory* GetMessageFactory(const CelTestContext& context) { |
| 116 | return context.cel_expression_builder() != nullptr |
| 117 | ? google::protobuf::MessageFactory::generated_factory() |
| 118 | : context.runtime()->GetMessageFactory(); |
| 119 | } |
| 120 | |
| 121 | absl::StatusOr<cel::Value> EvalWithModernBindings( |
| 122 | const CheckedExpr& checked_expr, const CelTestContext& context, |
no test coverage detected