public function testGettingOrderShippingAddressReturnsTheAddressResource()
 {
     $this->connection->expects($this->once())->method('get')->with($this->basePath . '/orders/1/shipping_addresses/1', false)->will($this->returnValue(array(array(), array())));
     $resource = Client::getOrderShippingAddress(1, 1);
     $this->assertInstanceOf('Bigcommerce\\Api\\Resources\\Address', $resource);
 }