fXmlRpc\Timing\TimingDecoratorTest::testRecordTimeIsCalled PHP Method

testRecordTimeIsCalled() public method

    public function testRecordTimeIsCalled()
    {
        $this->timer->expects($this->once())->method('recordTiming')->with($this->equalTo(0, 0.1), 'method', array('arg1', 'arg2'));
        $this->wrapped->expects($this->once())->method('call')->with('method', array('arg1', 'arg2'));
        $this->decorator->call('method', array('arg1', 'arg2'));
    }