| 53 | } |
| 54 | |
| 55 | MapExprEntry MakeMapExprEntry(ExprId id, Expr key, Expr value, |
| 56 | bool optional = false) { |
| 57 | MapExprEntry entry; |
| 58 | entry.set_id(id); |
| 59 | entry.set_key(std::move(key)); |
| 60 | entry.set_value(std::move(value)); |
| 61 | entry.set_optional(optional); |
| 62 | return entry; |
| 63 | } |
| 64 | |
| 65 | TEST(UnspecifiedExpr, Equality) { |
| 66 | EXPECT_EQ(UnspecifiedExpr{}, UnspecifiedExpr{}); |
no test coverage detected