aboutsummaryrefslogtreecommitdiffstats
path: root/tests/lib/http/client/responsetest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lib/http/client/responsetest.php')
-rw-r--r--tests/lib/http/client/responsetest.php37
1 files changed, 0 insertions, 37 deletions
diff --git a/tests/lib/http/client/responsetest.php b/tests/lib/http/client/responsetest.php
deleted file mode 100644
index d9b181a8e28..00000000000
--- a/tests/lib/http/client/responsetest.php
+++ /dev/null
@@ -1,37 +0,0 @@
-<?php
-/**
- * Copyright (c) 2015 Lukas Reschke <lukas@owncloud.com>
- * This file is licensed under the Affero General Public License version 3 or
- * later.
- * See the COPYING-README file.
- */
-
-namespace OC\Http\Client;
-
-use Guzzle\Stream\Stream;
-use GuzzleHttp\Message\Response as GuzzleResponse;
-
-/**
- * Class ResponseTest
- */
-class ResponseTest extends \Test\TestCase {
- /** @var Response */
- private $response;
- /** @var GuzzleResponse */
- private $guzzleResponse;
-
- public function setUp() {
- parent::setUp();
- $this->guzzleResponse = new GuzzleResponse(1337);
- $this->response = new Response($this->guzzleResponse);
- }
-
- public function testGetStatusCode() {
- $this->assertEquals(1337, $this->response->getStatusCode());
- }
-
- public function testGetHeader() {
- $this->guzzleResponse->setHeader('bar', 'foo');
- $this->assertEquals('foo', $this->response->getHeader('bar'));
- }
-}