| 101 | } |
| 102 | |
| 103 | absl::StatusOr<std::unique_ptr<const cel::Runtime>> CreateTestRuntime() { |
| 104 | CEL_ASSIGN_OR_RETURN(cel::RuntimeBuilder standard_runtime_builder, |
| 105 | cel::CreateStandardRuntimeBuilder( |
| 106 | cel::internal::GetTestingDescriptorPool(), {})); |
| 107 | return std::move(standard_runtime_builder).Build(); |
| 108 | } |
| 109 | |
| 110 | absl::StatusOr<std::unique_ptr<CelExpressionBuilder>> |
| 111 | CreateTestCelExpressionBuilder() { |