web3.php/test/unit/StringFormatterTest.php
2018-02-07 17:33:45 +08:00

40 lines
651 B
PHP

<?php
namespace Test\Unit;
use Test\TestCase;
use Web3\Formatters\StringFormatter;
class StringFormatterTest extends TestCase
{
/**
* formatter
*
* @var \Web3\Formatters\StringFormatter
*/
protected $formatter;
/**
* setUp
*
* @return void
*/
public function setUp()
{
parent::setUp();
$this->formatter = new StringFormatter;
}
/**
* testFormat
*
* @return void
*/
public function testFormat()
{
$formatter = $this->formatter;
$str = $formatter->format(123456);
$this->assertEquals($str, '123456');
}
}