| 28 | using ::testing::UnorderedElementsAre; |
| 29 | |
| 30 | TEST(ExpressionContainerTest, DefaultConstructed) { |
| 31 | ExpressionContainer container; |
| 32 | EXPECT_THAT(container.container(), IsEmpty()); |
| 33 | EXPECT_THAT(container.FindAlias("foo"), IsEmpty()); |
| 34 | } |
| 35 | |
| 36 | TEST(ExpressionContainerTest, MakeExpressionContainer) { |
| 37 | ASSERT_OK_AND_ASSIGN(ExpressionContainer container, |
nothing calls this directly
no test coverage detected