fXmlRpc\Timing\ZendFrameworkTwoTimerBridgeTest::testWithEmptyLogLevel PHP Method

testWithEmptyLogLevel() public method

    public function testWithEmptyLogLevel()
    {
        $bridge = new ZendFrameworkTwoTimerBridge($this->log, []);
        $this->log->expects($this->once())->method('debug');
        $bridge->recordTiming(0.1, 'method', array('arg1'));
    }