formatter = new StringFormatter; } /** * testFormat * * @return void */ public function testFormat() { $formatter = $this->formatter; $str = $formatter->format(123456); $this->assertEquals($str, '123456'); } }