Вход Регистрация
Файл: gapps/vendor/monolog/monolog/tests/Monolog/Processor/TagProcessorTest.php
Строк: 23
<?php

/*
 * This file is part of the Monolog package.
 *
 * (c) Jordi Boggiano <j.boggiano@seld.be>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace MonologProcessor;

use 
MonologTestCase;

class 
TagProcessorTest extends TestCase
{
    
/**
     * @covers MonologProcessorTagProcessor::__invoke
     */
    
public function testProcessor()
    {
        
$tags = array(123);
        
$processor = new TagProcessor($tags);
        
$record $processor($this->getRecord());

        
$this->assertEquals($tags$record['extra']['tags']);
    }

    
/**
     * @covers MonologProcessorTagProcessor::__invoke
     */
    
public function testProcessorTagModification()
    {
        
$tags = array(123);
        
$processor = new TagProcessor($tags);

        
$record $processor($this->getRecord());
        
$this->assertEquals($tags$record['extra']['tags']);

        
$processor->setTags(array('a''b'));
        
$record $processor($this->getRecord());
        
$this->assertEquals(array('a''b'), $record['extra']['tags']);

        
$processor->addTags(array('a''c''foo' => 'bar'));
        
$record $processor($this->getRecord());
        
$this->assertEquals(array('a''b''a''c''foo' => 'bar'), $record['extra']['tags']);
    }
}
Онлайн: 1
Реклама