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, 34 insertions, 0 deletions
diff --git a/tests/Unit/Controller/JSONHttpErrorTest.php b/tests/Unit/Controller/JSONHttpErrorTest.php
new file mode 100644
index 000000000..8ab657aa9
--- /dev/null
+++ b/tests/Unit/Controller/JSONHttpErrorTest.php
@@ -0,0 +1,34 @@
+<?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