fXmlRpc\Timing\Psr3TimerBridgeTest::testSettingEmptyLogLevel PHP Méthode

testSettingEmptyLogLevel() public méthode

    public function testSettingEmptyLogLevel()
    {
        $bridge = new Psr3TimerBridge($this->logger, []);
        $this->logger->expects($this->once())->method('log')->with(LogLevel::DEBUG);
        $bridge->recordTiming(1.1, 'method', array('arg1', 'arg2'));
    }