| 176 | using ValueMatcherTest = common_internal::ValueTest<>; |
| 177 | |
| 178 | TEST_F(ValueMatcherTest, OptionalValueIsMatch) { |
| 179 | EXPECT_THAT(OptionalValue::Of(IntValue(42), arena()), |
| 180 | OptionalValueIs(IntValueIs(42))); |
| 181 | } |
| 182 | |
| 183 | TEST_F(ValueMatcherTest, OptionalValueIsHeldValueDifferent) { |
| 184 | EXPECT_NONFATAL_FAILURE( |
nothing calls this directly
no test coverage detected