fXmlRpc\Timing\MonologTimerBridgeTest::testSetEmptyLogLevels PHP Method

testSetEmptyLogLevels() public method

    public function testSetEmptyLogLevels()
    {
        $bridge = new MonologTimerBridge($this->monolog, []);
        $this->monolog->expects($this->once())->method('addRecord')->with(Logger::DEBUG);
        $bridge->recordTiming(1.1, 'method', array('arg1', 'arg2'));
    }