summaryrefslogtreecommitdiffstats
path: root/tests/unit/utility/UpdaterTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/utility/UpdaterTest.php')
-rw-r--r--tests/unit/utility/UpdaterTest.php86
1 files changed, 43 insertions, 43 deletions
diff --git a/tests/unit/utility/UpdaterTest.php b/tests/unit/utility/UpdaterTest.php
index 1d61d65bb..edca29f67 100644
--- a/tests/unit/utility/UpdaterTest.php
+++ b/tests/unit/utility/UpdaterTest.php
@@ -16,47 +16,47 @@ namespace OCA\News\Utility;
class UpdaterTest extends \PHPUnit_Framework_TestCase {
- private $folderService;
- private $feedService;
- private $itemService;
- private $updater;
-
- protected function setUp() {
- $this->folderService = $this->getMockBuilder(
- '\OCA\News\Service\FolderService')
- ->disableOriginalConstructor()
- ->getMock();
- $this->feedService = $this->getMockBuilder(
- '\OCA\News\Service\FeedService')
- ->disableOriginalConstructor()
- ->getMock();
- $this->itemService = $this->getMockBuilder(
- '\OCA\News\Service\ItemService')
- ->disableOriginalConstructor()
- ->getMock();
- $this->updater = new Updater($this->folderService,
- $this->feedService,
- $this->itemService);
- }
-
- public function testBeforeUpdate() {
- $this->folderService->expects($this->once())
- ->method('purgeDeleted');
- $this->feedService->expects($this->once())
- ->method('purgeDeleted');
- $this->updater->beforeUpdate();
- }
-
-
- public function testAfterUpdate() {
- $this->itemService->expects($this->once())
- ->method('autoPurgeOld');
- $this->updater->afterUpdate();
- }
-
- public function testUpdate() {
- $this->feedService->expects($this->once())
- ->method('updateAll');
- $this->updater->update();
- }
+ private $folderService;
+ private $feedService;
+ private $itemService;
+ private $updater;
+
+ protected function setUp() {
+ $this->folderService = $this->getMockBuilder(
+ '\OCA\News\Service\FolderService')
+ ->disableOriginalConstructor()
+ ->getMock();
+ $this->feedService = $this->getMockBuilder(
+ '\OCA\News\Service\FeedService')
+ ->disableOriginalConstructor()
+ ->getMock();
+ $this->itemService = $this->getMockBuilder(
+ '\OCA\News\Service\ItemService')
+ ->disableOriginalConstructor()
+ ->getMock();
+ $this->updater = new Updater($this->folderService,
+ $this->feedService,
+ $this->itemService);
+ }
+
+ public function testBeforeUpdate() {
+ $this->folderService->expects($this->once())
+ ->method('purgeDeleted');
+ $this->feedService->expects($this->once())
+ ->method('purgeDeleted');
+ $this->updater->beforeUpdate();
+ }
+
+
+ public function testAfterUpdate() {
+ $this->itemService->expects($this->once())
+ ->method('autoPurgeOld');
+ $this->updater->afterUpdate();
+ }
+
+ public function testUpdate() {
+ $this->feedService->expects($this->once())
+ ->method('updateAll');
+ $this->updater->update();
+ }
} \ No newline at end of file