| 293 | TYPED_TEST_SUITE(HandleTest, HandleTypes); |
| 294 | |
| 295 | TYPED_TEST(HandleTest, basic) { |
| 296 | auto* item = this->template makeItem<TypeParam>(); |
| 297 | { |
| 298 | auto handle = ASSERT_OK(tryCreateHandle<TypeParam>(this->cache_, *item)); |
| 299 | this->checkItemFields(handle); |
| 300 | } |
| 301 | this->template checkReleased<TypeParam>(item, /* removedFromCache */ false); |
| 302 | } |
| 303 | |
| 304 | TYPED_TEST(HandleTest, move) { |
| 305 | auto* item = this->template makeItem<TypeParam>(); |
nothing calls this directly
no test coverage detected