summaryrefslogtreecommitdiffstats
path: root/tests/unit/service/ServiceTest.php
diff options
context:
space:
mode:
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, '');
+ }
}