Kraken\_Unit\Log\Formatter\FormatterTest::testApiFormat_CallsMethodOnModel PHP Метод

testApiFormat_CallsMethodOnModel() публичный Метод

    public function testApiFormat_CallsMethodOnModel()
    {
        $formatter = $this->createFormatter();
        $array = ['some'];
        $val = 'val';
        $this->expect('format', [$array])->willReturn($val);
        $this->assertSame($val, $formatter->format($array));
    }