summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/unit/controller/JSONHttpErrorTest.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/unit/controller/JSONHttpErrorTest.php b/tests/unit/controller/JSONHttpErrorTest.php
index dfcbd202e..ffbbbed43 100644
--- a/tests/unit/controller/JSONHttpErrorTest.php
+++ b/tests/unit/controller/JSONHttpErrorTest.php
@@ -15,13 +15,17 @@ namespace OCA\News\Controller;
require_once(__DIR__ . "/../../classloader.php");
+class Test {
+ use JSONHttpError;
+}
class JSONHttpErrorTest extends \PHPUnit_Framework_TestCase {
public function testError() {
$ex = new \Exception('hi');
- $result = JSONHttpError::error($ex, 3);
+ $test = new Test();
+ $result = $test->error($ex, 3);
$this->assertEquals(['message' => 'hi'], $result->getData());
$this->assertEquals(3, $result->getStatus());