public function testDeletingAllOrdersDeletesToTheOrderResource()
 {
     $this->connection->expects($this->once())->method('delete')->with($this->basePath . '/orders');
     Client::deleteAllOrders();
 }