| 75 | using ActivationTest = common_internal::ValueTest<>; |
| 76 | |
| 77 | TEST_F(ActivationTest, ValueNotFound) { |
| 78 | Activation activation; |
| 79 | |
| 80 | EXPECT_THAT(activation.FindVariable("var1", descriptor_pool(), |
| 81 | message_factory(), arena()), |
| 82 | IsOkAndHolds(Eq(absl::nullopt))); |
| 83 | } |
| 84 | |
| 85 | TEST_F(ActivationTest, InsertValue) { |
| 86 | Activation activation; |
nothing calls this directly
no test coverage detected