| 174 | //////////////////////////////////////////////////////////////////////////////// |
| 175 | |
| 176 | TEST(TIntrusiveAtomicPtrTest, Empty) |
| 177 | { |
| 178 | TIntricateObjectPtr emptyPointer; |
| 179 | EXPECT_EQ(nullptr, emptyPointer.Get()); |
| 180 | } |
| 181 | |
| 182 | constexpr int ReservedRefCount = 65535; |
| 183 |
nothing calls this directly
no test coverage detected