| 359 | } |
| 360 | |
| 361 | absl::StatusOr<cel::Value> TestRunner::EvalWithRuntime( |
| 362 | const CheckedExpr& checked_expr, const TestCase& test_case, |
| 363 | google::protobuf::Arena* arena) { |
| 364 | CEL_ASSIGN_OR_RETURN( |
| 365 | cel::Activation activation, |
| 366 | CreateModernActivationFromBindings(test_case, *test_context_, arena)); |
| 367 | return EvalWithModernBindings(checked_expr, *test_context_, activation, |
| 368 | arena); |
| 369 | } |
| 370 | |
| 371 | absl::StatusOr<cel::Value> TestRunner::EvalWithCelExpressionBuilder( |
| 372 | const CheckedExpr& checked_expr, const TestCase& test_case, |
nothing calls this directly
no test coverage detected