| 32 | using ::testing::UnorderedElementsAre; |
| 33 | |
| 34 | TEST(BoolValueIs, Match) { EXPECT_THAT(BoolValue(true), BoolValueIs(true)); } |
| 35 | |
| 36 | TEST(BoolValueIs, NoMatch) { |
| 37 | EXPECT_THAT(BoolValue(false), Not(BoolValueIs(true))); |
nothing calls this directly
no test coverage detected