summaryrefslogtreecommitdiffstats
path: root/tests/unit/bl/FolderBlTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/bl/FolderBlTest.php')
-rw-r--r--tests/unit/bl/FolderBlTest.php16
1 files changed, 14 insertions, 2 deletions
diff --git a/tests/unit/bl/FolderBlTest.php b/tests/unit/bl/FolderBlTest.php
index 1bf2cd3ce..f99dfda9e 100644
--- a/tests/unit/bl/FolderBlTest.php
+++ b/tests/unit/bl/FolderBlTest.php
@@ -43,7 +43,7 @@ class FolderBlTest extends \OCA\AppFramework\Utility\TestUtility {
'\OCA\News\Db\FolderMapper')
->disableOriginalConstructor()
->getMock();
- $this->folderBl = new FolderBl($this->folderMapper);
+ $this->folderBl = new FolderBl($this->folderMapper, $this->api);
}
@@ -83,7 +83,13 @@ class FolderBlTest extends \OCA\AppFramework\Utility\TestUtility {
$rows = array(
array('id' => 1)
);
-
+
+ $trans = $this->getMock('Trans', array('t'));
+ $trans->expects($this->once())
+ ->method('t');
+ $this->api->expects($this->once())
+ ->method('getTrans')
+ ->will($this->returnValue($trans));
$this->folderMapper->expects($this->once())
->method('findByName')
->with($this->equalTo($folderName))
@@ -138,6 +144,12 @@ class FolderBlTest extends \OCA\AppFramework\Utility\TestUtility {
array('id' => 1)
);
+ $trans = $this->getMock('Trans', array('t'));
+ $trans->expects($this->once())
+ ->method('t');
+ $this->api->expects($this->once())
+ ->method('getTrans')
+ ->will($this->returnValue($trans));
$this->folderMapper->expects($this->once())
->method('findByName')
->with($this->equalTo($folderName))