/**
  * @expectedException \StoreIntegrator\Exceptions\EbayErrorException
  * @expectedExceptionMessage Very Big Error
  * @expectedExceptionCode 1234
  */
 public function testGetOrderError()
 {
     $this->createErrorResponseForOperation('GetOrrdersResponse');
     $this->ordersWrapper->get('foobar');
 }
 /**
  * @param $orderId
  * @return mixed
  */
 public function getOrder($orderId)
 {
     return $this->ordersWrapper->get($orderId);
 }