| 141 | } |
| 142 | |
| 143 | absl::StatusOr<bool> CompileAndEvalBooleanExpr( |
| 144 | Env& env, absl::string_view expr, |
| 145 | const Activation& activation = Activation()) { |
| 146 | CEL_ASSIGN_OR_RETURN(auto value, CompileAndEvalExpr(env, expr, activation)); |
| 147 | return value.GetBool(); |
| 148 | } |
| 149 | |
| 150 | class LibraryConfigTest : public testing::Test { |
| 151 | protected: |
no test coverage detected