call() public method

public call ( $methodName, array $arguments = [] )
$arguments array
 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'));
 }