| 16 | }; |
| 17 | |
| 18 | TEST_F(EpochTest, default_accessor_not_valid) { |
| 19 | Accessor accessor; |
| 20 | ASSERT_FALSE(accessor); |
| 21 | ASSERT_DEATH(accessor.lock(), ""); |
| 22 | } |
| 23 | |
| 24 | TEST_F(EpochTest, accessor_valid_until_release) { |
| 25 | auto accessor = epoch.create_accessor(); |
nothing calls this directly
no test coverage detected