public function setUp()
{
$this->wrapped = $this->getMockBuilder('fXmlRpc\\ClientInterface')->disableOriginalConstructor()->getMock();
$this->timer = $this->getMockBuilder('fXmlRpc\\Timing\\TimerInterface')->getMock();
$this->decorator = new TimingDecorator($this->wrapped, $this->timer);
}