summaryrefslogtreecommitdiffstats
path: root/tests/unit/controller/FolderControllerTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/controller/FolderControllerTest.php')
-rw-r--r--tests/unit/controller/FolderControllerTest.php14
1 files changed, 10 insertions, 4 deletions
diff --git a/tests/unit/controller/FolderControllerTest.php b/tests/unit/controller/FolderControllerTest.php
index b06c97c79..5a5daff3d 100644
--- a/tests/unit/controller/FolderControllerTest.php
+++ b/tests/unit/controller/FolderControllerTest.php
@@ -91,7 +91,9 @@ class FolderControllerTest extends \PHPUnit_Framework_TestCase {
public function testOpenDoesNotExist(){
$this->folderService->expects($this->once())
->method('open')
- ->will($this->throwException(new ServiceNotFoundException($this->msg)));
+ ->will($this->throwException(
+ new ServiceNotFoundException($this->msg))
+ );
$response = $this->controller->open(5, true);
@@ -144,7 +146,8 @@ class FolderControllerTest extends \PHPUnit_Framework_TestCase {
$response = $this->controller->create('tech');
$params = json_decode($response->render(), true);
- $this->assertEquals($response->getStatus(), Http::STATUS_UNPROCESSABLE_ENTITY);
+ $this->assertEquals($response->getStatus(),
+ Http::STATUS_UNPROCESSABLE_ENTITY);
$this->assertEquals($msg, $params['message']);
}
@@ -217,7 +220,8 @@ class FolderControllerTest extends \PHPUnit_Framework_TestCase {
$response = $this->controller->rename('tech', 4);
$params = json_decode($response->render(), true);
- $this->assertEquals($response->getStatus(), Http::STATUS_UNPROCESSABLE_ENTITY);
+ $this->assertEquals($response->getStatus(),
+ Http::STATUS_UNPROCESSABLE_ENTITY);
$this->assertEquals($msg, $params['message']);
}
@@ -285,7 +289,9 @@ class FolderControllerTest extends \PHPUnit_Framework_TestCase {
public function testRestoreDoesNotExist(){
$this->folderService->expects($this->once())
->method('unmarkDeleted')
- ->will($this->throwException(new ServiceNotFoundException($this->msg)));
+ ->will(
+ $this->throwException(new ServiceNotFoundException($this->msg))
+ );
$response = $this->controller->restore(5);