| 43 | using ::testing::TestWithParam; |
| 44 | |
| 45 | TEST(Owner, None) { |
| 46 | EXPECT_THAT(Owner::None(), IsFalse()); |
| 47 | EXPECT_THAT(Owner::None().arena(), IsNull()); |
| 48 | } |
| 49 | |
| 50 | TEST(Owner, Allocator) { |
| 51 | google::protobuf::Arena arena; |
nothing calls this directly
no test coverage detected