Ejemplo n.º 1
0
 public function testListDomesticParcelWeights()
 {
     $this->setMockResponse($this->client, array('postage/list_domestic_parcel_weights'));
     $response = $this->client->listDomesticParcelWeights();
     $this->assertArrayHasKey('weights', $response);
     $this->assertArrayHasKey('weight', $response['weights']);
     $this->assertCount(23, $response['weights']['weight']);
 }