summaryrefslogtreecommitdiffstats
path: root/tests/unit/controller/JSONHttpErrorTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/controller/JSONHttpErrorTest.php')
-rw-r--r--tests/unit/controller/JSONHttpErrorTest.php34
1 files changed, 0 insertions, 34 deletions
diff --git a/tests/unit/controller/JSONHttpErrorTest.php b/tests/unit/controller/JSONHttpErrorTest.php
deleted file mode 100644
index 8ab657aa9..000000000
--- a/tests/unit/controller/JSONHttpErrorTest.php
+++ /dev/null
@@ -1,34 +0,0 @@
-<?php
-/**
- * ownCloud - News
- *
- * This file is licensed under the Affero General Public License version 3 or
- * later. See the COPYING file.
- *
- * @author Alessandro Cosentino <cosenal@gmail.com>
- * @author Bernhard Posselt <dev@bernhard-posselt.com>
- * @copyright Alessandro Cosentino 2012
- * @copyright Bernhard Posselt 2012, 2014
- */
-
-namespace OCA\News\Controller;
-
-
-class Test {
- use JSONHttpError;
-}
-
-class JSONHttpErrorTest extends \PHPUnit_Framework_TestCase {
-
-
- public function testError() {
- $ex = new \Exception('hi');
- $test = new Test();
- $result = $test->error($ex, 3);
-
- $this->assertEquals(['message' => 'hi'], $result->getData());
- $this->assertEquals(3, $result->getStatus());
- }
-
-
-} \ No newline at end of file