summaryrefslogtreecommitdiffstats
path: root/tests/unit/service/ServiceTest.php
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-10-21 16:45:36 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2014-10-21 16:45:36 +0200
commit42d69a95f3276a2d6089ca68f635c4e2f6aa7a23 (patch)
tree6a17fd7998f291e6dec1d996c1e7c724b92b8e58 /tests/unit/service/ServiceTest.php
parent0e6598b0734fb927109f745d9c0f3a8605a30ca5 (diff)
convert tabs indention to indention with 4 spaces because of mixing of both variants in code and better readability on github and websites because you cant set the indention width there and 8 spaces will be used for a tab
Diffstat (limited to 'tests/unit/service/ServiceTest.php')
-rw-r--r--tests/unit/service/ServiceTest.php98
1 files changed, 49 insertions, 49 deletions
diff --git a/tests/unit/service/ServiceTest.php b/tests/unit/service/ServiceTest.php
index 369962128..473141cd3 100644
--- a/tests/unit/service/ServiceTest.php
+++ b/tests/unit/service/ServiceTest.php
@@ -20,75 +20,75 @@ use \OCA\News\Db\Folder;
class TestService extends Service {
- public function __construct($mapper){
- parent::__construct($mapper);
- }
+ public function __construct($mapper){
+ parent::__construct($mapper);
+ }
}
class ServiceTest extends \PHPUnit_Framework_TestCase {
- protected $mapper;
- protected $newsService;
+ protected $mapper;
+ protected $newsService;
- protected function setUp(){
- $this->mapper = $this->getMockBuilder('\OCA\News\Db\ItemMapper')
- ->disableOriginalConstructor()
- ->getMock();
- $this->newsService = new TestService($this->mapper);
- }
+ protected function setUp(){
+ $this->mapper = $this->getMockBuilder('\OCA\News\Db\ItemMapper')
+ ->disableOriginalConstructor()
+ ->getMock();
+ $this->newsService = new TestService($this->mapper);
+ }
- public function testDelete(){
- $id = 5;
- $user = 'ken';
- $folder = new Folder();
- $folder->setId($id);
+ public function testDelete(){
+ $id = 5;
+ $user = 'ken';
+ $folder = new Folder();
+ $folder->setId($id);
- $this->mapper->expects($this->once())
- ->method('delete')
- ->with($this->equalTo($folder));
- $this->mapper->expects($this->once())
- ->method('find')
- ->with($this->equalTo($id), $this->equalTo($user))
- ->will($this->returnValue($folder));
+ $this->mapper->expects($this->once())
+ ->method('delete')
+ ->with($this->equalTo($folder));
+ $this->mapper->expects($this->once())
+ ->method('find')
+ ->with($this->equalTo($id), $this->equalTo($user))
+ ->will($this->returnValue($folder));
- $this->newsService->delete($id, $user);
- }
+ $this->newsService->delete($id, $user);
+ }
- public function testFind(){
- $id = 3;
- $user = 'ken';
+ public function testFind(){
+ $id = 3;
+ $user = 'ken';
- $this->mapper->expects($this->once())
- ->method('find')
- ->with($this->equalTo($id), $this->equalTo($user));
+ $this->mapper->expects($this->once())
+ ->method('find')
+ ->with($this->equalTo($id), $this->equalTo($user));
- $this->newsService->find($id, $user);
- }
+ $this->newsService->find($id, $user);
+ }
- public function testFindDoesNotExist(){
- $ex = new DoesNotExistException('hi');
+ public function testFindDoesNotExist(){
+ $ex = new DoesNotExistException('hi');
- $this->mapper->expects($this->once())
- ->method('find')
- ->will($this->throwException($ex));
+ $this->mapper->expects($this->once())
+ ->method('find')
+ ->will($this->throwException($ex));
- $this->setExpectedException('\OCA\News\Service\ServiceNotFoundException');
- $this->newsService->find(1, '');
- }
+ $this->setExpectedException('\OCA\News\Service\ServiceNotFoundException');
+ $this->newsService->find(1, '');
+ }
- public function testFindMultiple(){
- $ex = new MultipleObjectsReturnedException('hi');
+ public function testFindMultiple(){
+ $ex = new MultipleObjectsReturnedException('hi');
- $this->mapper->expects($this->once())
- ->method('find')
- ->will($this->throwException($ex));
+ $this->mapper->expects($this->once())
+ ->method('find')
+ ->will($this->throwException($ex));
- $this->setExpectedException('\OCA\News\Service\ServiceNotFoundException');
- $this->newsService->find(1, '');
- }
+ $this->setExpectedException('\OCA\News\Service\ServiceNotFoundException');
+ $this->newsService->find(1, '');
+ }
}