/**
  * @dataProvider providerHexDump
  * @param string $expected
  * @param int $value
  *
  * @throws \Exception
  */
 public function testHexDump($expected, $value)
 {
     $this->assertSame($expected, Utils::hexDump($value));
 }