| 26 | BOOST_FIXTURE_TEST_SUITE(compress_tests, BasicTestingSetup) |
| 27 | |
| 28 | bool static TestEncode(uint64_t in) { |
| 29 | return in == DecompressAmount(CompressAmount(in)); |
| 30 | } |
| 31 | |
| 32 | bool static TestDecode(uint64_t in) { |
| 33 | return in == CompressAmount(DecompressAmount(in)); |
no test coverage detected