public function testDeleteItem()
 {
     // Set mocked response
     $body = new Stream(fopen('data://text/plain,[]', 'r'));
     $this->subscriber->addResponse(new Response(200, [], $body));
     $this->client->deleteItem('');
     // If we reach this point, the everything worked
     $this->assertTrue(true);
 }