summaryrefslogtreecommitdiffstats
path: root/tests/Unit/Http/TextDownloadResponseTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Unit/Http/TextDownloadResponseTest.php')
-rw-r--r--tests/Unit/Http/TextDownloadResponseTest.php17
1 files changed, 10 insertions, 7 deletions
diff --git a/tests/Unit/Http/TextDownloadResponseTest.php b/tests/Unit/Http/TextDownloadResponseTest.php
index 84e5c8c60..96fa74ffc 100644
--- a/tests/Unit/Http/TextDownloadResponseTest.php
+++ b/tests/Unit/Http/TextDownloadResponseTest.php
@@ -5,10 +5,10 @@
* 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
*/
@@ -17,17 +17,20 @@ namespace OCA\News\Tests\Unit\Http;
use OCA\News\Http\TextDownloadResponse;
-class TextDownloadResponseTest extends \PHPUnit_Framework_TestCase {
+class TextDownloadResponseTest extends \PHPUnit_Framework_TestCase
+{
- protected function setUp() {
+ protected function setUp()
+ {
$this->response = new TextDownloadResponse(
'sometext', 'file', 'content'
);
}
- public function testRender() {
+ public function testRender()
+ {
$this->assertEquals('sometext', $this->response->render());
}