formatter = new IntegerFormatter; } /** * testFormat * * @return void */ public function testFormat() { $formatter = $this->formatter; $hex = $formatter->format('1'); $this->assertEquals($hex, implode('', array_fill(0, 63, '0')) . '1'); $hex = $formatter->format('-1'); $this->assertEquals($hex, implode('', array_fill(0, 64, 'f'))); $hex = $formatter->format('ae'); $this->assertEquals($hex, implode('', array_fill(0, 62, '0')) . 'ae'); } }