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.php17
1 files changed, 10 insertions, 7 deletions
diff --git a/tests/Unit/Controller/JSONHttpErrorTest.php b/tests/Unit/Controller/JSONHttpErrorTest.php
index d7dcaa90a..a77566e04 100644
--- a/tests/Unit/Controller/JSONHttpErrorTest.php
+++ b/tests/Unit/Controller/JSONHttpErrorTest.php
@@ -5,24 +5,27 @@
* 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
+ * @author Alessandro Cosentino <cosenal@gmail.com>
+ * @author Bernhard Posselt <dev@bernhard-posselt.com>
+ * @copyright 2012 Alessandro Cosentino
+ * @copyright 2012-2014 Bernhard Posselt
*/
namespace OCA\News\Tests\Unit\Controller;
use OCA\News\Controller\JSONHttpError;
-class Test {
+class Test
+{
use JSONHttpError;
}
-class JSONHttpErrorTest extends \PHPUnit_Framework_TestCase {
+class JSONHttpErrorTest extends \PHPUnit_Framework_TestCase
+{
- public function testError() {
+ public function testError()
+ {
$ex = new \Exception('hi');
$test = new Test();
$result = $test->error($ex, 3);