summaryrefslogtreecommitdiffstats
path: root/tests/integration/fixtures/FeedFixture.php
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2015-11-29 17:03:52 +0100
committerBernhard Posselt <dev@bernhard-posselt.com>2016-01-17 18:18:39 +0100
commitd0155e9d66665a7195194a988e16ff16623e28f0 (patch)
treed7ec1d8c369bbf57443e0b1400444aea14e0a040 /tests/integration/fixtures/FeedFixture.php
parent69be70eaf4be874b2414220b459179e1f0ec9a97 (diff)
first step at cleaning up integration tests
Diffstat (limited to 'tests/integration/fixtures/FeedFixture.php')
-rw-r--r--tests/integration/fixtures/FeedFixture.php50
1 files changed, 50 insertions, 0 deletions
diff --git a/tests/integration/fixtures/FeedFixture.php b/tests/integration/fixtures/FeedFixture.php
new file mode 100644
index 000000000..286373c76
--- /dev/null
+++ b/tests/integration/fixtures/FeedFixture.php
@@ -0,0 +1,50 @@
+<?php
+/**
+ * ownCloud - News
+ *
+ * This file is licensed under the Affero General Public License version 3 or
+ * later. See the COPYING file.
+ *
+ * @author Bernhard Posselt <dev@bernhard-posselt.com>
+ * @copyright Bernhard Posselt 2015
+ */
+
+
+namespace OCA\News\Tests\Integration\Fixtures;
+
+
+use OCA\News\Db\Feed;
+
+class FeedFixture extends Feed {
+
+ use Fixture;
+
+ public function __construct(array $defaults=[]) {
+ parent::__construct();
+ $defaults = array_combine([
+ 'userId' => 'test',
+ 'urlHash' => 'urlHash',
+ 'url' => 'http://the.url.com',
+ 'title' => 'title',
+ 'faviconLink' => 'http://the.faviconLink.com',
+ 'added' => 9,
+ 'folderId' => 0,
+ 'unreadCount' => 0,
+ 'link' => 'http://thelink.com',
+ 'preventUpdate' => false,
+ 'deletedAt' => 0,
+ 'articlesPerUpdate' => 50,
+ 'lastModified' => 10,
+ 'etag' => '',
+ 'location' => 'http://thefeed.com',
+ 'ordering' => 0,
+ 'fullTextEnabled' => false,
+ 'pinned' => false,
+ 'updateMode' => 0,
+ 'updateErrorCount' => 0,
+ 'lastUpdateError' => 'lastUpdateError',
+ ], $defaults);
+ $this->fillDefaults($defaults);
+ }
+
+} \ No newline at end of file