summaryrefslogtreecommitdiffstats
path: root/tests/unit/businesslayer
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-05-12 23:26:59 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2014-05-12 23:26:59 +0200
commit937f025137cf511eba332260ea1ae876090b7d43 (patch)
tree1e35307731960700cddea26e0e4b0621ebb251c0 /tests/unit/businesslayer
parent2dd8827768379ef8a96611b7b702464da8fd7349 (diff)
remove more unused code
Diffstat (limited to 'tests/unit/businesslayer')
-rw-r--r--tests/unit/businesslayer/FeedBusinessLayerTest.php5
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/unit/businesslayer/FeedBusinessLayerTest.php b/tests/unit/businesslayer/FeedBusinessLayerTest.php
index bd8e6fabd..2c6aa9ac9 100644
--- a/tests/unit/businesslayer/FeedBusinessLayerTest.php
+++ b/tests/unit/businesslayer/FeedBusinessLayerTest.php
@@ -247,7 +247,6 @@ class FeedBusinessLayerTest extends \PHPUnit_Framework_TestCase {
public function testUpdateCreatesNewEntry(){
$feed = new Feed();
$feed->setId(3);
- $feed->getUrl('test');
$feed->setArticlesPerUpdate(1);
$feed->setUrlHash('yo');
@@ -303,7 +302,6 @@ class FeedBusinessLayerTest extends \PHPUnit_Framework_TestCase {
public function testUpdateUpdatesArticlesPerFeedCount() {
$feed = new Feed();
$feed->setId(3);
- $feed->getUrl('test');
$feed->setUrlHash('yo');
$existingFeed = new Feed();
@@ -335,7 +333,6 @@ class FeedBusinessLayerTest extends \PHPUnit_Framework_TestCase {
public function testUpdateFails(){
$feed = new Feed();
$feed->setId(3);
- $feed->getUrl('test');
$ex = new FetcherException('');
$this->feedMapper->expects($this->at(0))
@@ -363,7 +360,6 @@ class FeedBusinessLayerTest extends \PHPUnit_Framework_TestCase {
public function testUpdateDoesNotFindEntry() {
$feed = new Feed();
$feed->setId(3);
- $feed->getUrl('test');
$ex = new DoesNotExistException('');
@@ -381,7 +377,6 @@ class FeedBusinessLayerTest extends \PHPUnit_Framework_TestCase {
public function testUpdateDoesNotFindUpdatedEntry() {
$feed = new Feed();
$feed->setId(3);
- $feed->getUrl('test');
$feed->setArticlesPerUpdate(1);
$item = new Item();