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