holodeck->mock(new Response(500, '')); try { $this->twilio->lookups->v1->phoneNumbers("+987654321")->fetch(); } catch (DeserializeException $e) {} catch (TwilioException $e) {} $this->assertRequest(new Request( 'get', 'https://lookups.twilio.com/v1/PhoneNumbers/%2B987654321' )); } public function testFetchResponse() { $this->holodeck->mock(new Response( 200, ' { "caller_name": { "caller_name": "Delicious Cheese Cake", "caller_type": "CONSUMER", "error_code": null }, "carrier": { "error_code": null, "mobile_country_code": "310", "mobile_network_code": "456", "name": "verizon", "type": "mobile" }, "country_code": "US", "national_format": "(510) 867-5309", "phone_number": "+15108675309", "add_ons": { "status": "successful", "message": null, "code": null, "results": {} }, "url": "https://lookups.twilio.com/v1/PhoneNumbers/phone_number" } ' )); $actual = $this->twilio->lookups->v1->phoneNumbers("+987654321")->fetch(); $this->assertNotNull($actual); } }