| 10 | //////////////////////////////////////////////////////////////////////////////// |
| 11 | |
| 12 | TEST(TGuidTest, CreateRandom) |
| 13 | { |
| 14 | auto guid = TGuid::Create(); |
| 15 | auto otherGuid = TGuid::Create(); |
| 16 | EXPECT_FALSE(guid == otherGuid); |
| 17 | } |
| 18 | |
| 19 | TEST(TGuidTest, FormattableGuid) |
| 20 | { |
nothing calls this directly
no test coverage detected