Phalcon\Test\Unit\Logger\Adapter\FileTest::testLoggerAdapterFileSetGetFormat PHP Method

testLoggerAdapterFileSetGetFormat() public method

Tests set/getFormat
Since: 2012-09-17
Author: Nikos Dimopoulos ([email protected])
    public function testLoggerAdapterFileSetGetFormat()
    {
        $formatter = new Line();
        $format = '%type%|%date%|%message%';
        $formatter->setFormat($format);
        $actual = $formatter->getFormat();
        $expected = $format;
        $this->assertEquals($expected, $actual, 'set/getFormat does not correctly set/get the format');
    }
FileTest