12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?php
- namespace Test\Unit;
- use Test\TestCase;
- use Web3\Formatters\IntegerFormatter;
- class IntegerFormatterTest extends TestCase
- {
-
- protected $formatter;
-
- public function setUp()
- {
- parent::setUp();
- $this->formatter = new IntegerFormatter;
- }
-
- 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');
- $hex = $formatter->format('1', 20);
- $this->assertEquals($hex, implode('', array_fill(0, 19, '0')) . '1');
- $hex = $formatter->format(48);
- $this->assertEquals($hex, implode('', array_fill(0, 62, '0')) . '30');
- $hex = $formatter->format('48');
- $this->assertEquals($hex, implode('', array_fill(0, 62, '0')) . '30');
- }
- }
|