public function testListCustomerCollectionPointsExceptions()
 {
     $this->setMockResponse($this->client, array('deliverychoice/list_customer_collection_points_invalid_last_update'));
     $response = $this->client->listCustomerCollectionPoints(array('last_update' => '2012-02-30'));
     $collectionPoints = $response['CustomerCollectionPoints'];
     $this->assertArrayHasKey('BusinessException', $collectionPoints);
     $this->assertEquals('1303', $collectionPoints['BusinessException']['Code']);
     $this->assertEquals('Invalid Date', $collectionPoints['BusinessException']['Description']);
 }