| 21 | */ |
| 22 | |
| 23 | TEST(CompressionTests, TestStorageValueEquality) { |
| 24 | DASSERT(StorageValue{-1} == StorageValue{-2 + 1}); |
| 25 | DASSERT(StorageValue{5} == StorageValue{5U}); |
| 26 | DASSERT( |
| 27 | StorageValue{1} == StorageValue{StorageValue{(int128_t{1} << 100)}.get<int128_t>() >> 100}); |
| 28 | } |
| 29 | |
| 30 | /* |
| 31 | * CompressionMetadata Tests |
nothing calls this directly
no test coverage detected