From d38f2576b2d38f1ac9ce24a5bd73ffb02ede63f6 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Thu, 23 Jan 2014 22:47:52 +0100 Subject: fix unit tests --- tests/unit/fetcher/FeedFetcherTest.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'tests/unit') diff --git a/tests/unit/fetcher/FeedFetcherTest.php b/tests/unit/fetcher/FeedFetcherTest.php index 83ba3b809..b9f68fdae 100644 --- a/tests/unit/fetcher/FeedFetcherTest.php +++ b/tests/unit/fetcher/FeedFetcherTest.php @@ -160,14 +160,14 @@ class FeedFetcherTest extends \OCA\AppFramework\Utility\TestUtility { } - private function expectCore($method, $return) { - $this->core->expects($this->once()) + private function expectCore($method, $return, $count = 1) { + $this->core->expects($this->exactly($count)) ->method($method) ->will($this->returnValue($return)); } - private function expectItem($method, $return) { - $this->item->expects($this->once()) + private function expectItem($method, $return, $count = 1) { + $this->item->expects($this->exactly($count)) ->method($method) ->will($this->returnValue($return)); } @@ -236,7 +236,7 @@ class FeedFetcherTest extends \OCA\AppFramework\Utility\TestUtility { private function createFeed($hasFeedFavicon=false, $hasWebFavicon=false) { $this->expectCore('get_title', $this->feedTitle); - $this->expectCore('get_permalink', $this->feedLink); + $this->expectCore('get_permalink', $this->feedLink, 2); $feed = new Feed(); $feed->setTitle(html_entity_decode($this->feedTitle)); @@ -280,7 +280,7 @@ class FeedFetcherTest extends \OCA\AppFramework\Utility\TestUtility { public function testFetchMapItemsNoFeedTitleUsesUrl(){ $this->expectCore('get_title', ''); - $this->expectCore('get_permalink', $this->feedLink); + $this->expectCore('get_permalink', $this->feedLink, 2); $feed = new Feed(); $feed->setTitle($this->url); @@ -340,7 +340,7 @@ class FeedFetcherTest extends \OCA\AppFramework\Utility\TestUtility { public function testFetchMapItemsGetFavicon() { $this->expectCore('get_title', $this->feedTitle); - $this->expectCore('get_permalink', $this->feedLink); + $this->expectCore('get_permalink', $this->feedLink, 2); $feed = new Feed(); $feed->setTitle(html_entity_decode($this->feedTitle)); @@ -366,7 +366,7 @@ class FeedFetcherTest extends \OCA\AppFramework\Utility\TestUtility { public function testFetchMapItemsNoGetFavicon() { $this->expectCore('get_title', $this->feedTitle); - $this->expectCore('get_permalink', $this->feedLink); + $this->expectCore('get_permalink', $this->feedLink, 2); $feed = new Feed(); $feed->setTitle(html_entity_decode($this->feedTitle)); -- cgit v1.2.3