Helper for a simple CelExpression with no context.
| 28 | |
| 29 | // Helper for a simple CelExpression with no context. |
| 30 | absl::StatusOr<bool> TruthTableTest(absl::string_view statement) { |
| 31 | return CompileAndEvaluateWithBoolVar(statement, /*unused*/ false); |
| 32 | } |
| 33 | |
| 34 | TEST(Exercise3, LogicalOr) { |
| 35 | // Some of these expectations are incorrect. |
no test coverage detected