fXmlRpc\Timing\ZendFrameworkTwoTimerBridgeTest::testWithCustomMessageTemplate PHP Method

testWithCustomMessageTemplate() public method

    public function testWithCustomMessageTemplate()
    {
        $bridge = new ZendFrameworkTwoTimerBridge($this->log, null, 'Custom template %2.1Fs');
        $this->log->expects($this->once())->method('debug')->with('Custom template 0.1s', array('xmlrpcMethod' => 'method', 'xmlrpcArguments' => array('arg1')));
        $bridge->recordTiming(0.1, 'method', array('arg1'));
    }