summaryrefslogtreecommitdiffstats
path: root/tests/integration/fixtures/ItemFixture.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/integration/fixtures/ItemFixture.php')
-rw-r--r--tests/integration/fixtures/ItemFixture.php43
1 files changed, 43 insertions, 0 deletions
diff --git a/tests/integration/fixtures/ItemFixture.php b/tests/integration/fixtures/ItemFixture.php
new file mode 100644
index 000000000..412f1c990
--- /dev/null
+++ b/tests/integration/fixtures/ItemFixture.php
@@ -0,0 +1,43 @@
+<?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\Item;
+
+class ItemFixture extends Item {
+ use Fixture;
+
+ public function __construct(array $defaults=[]) {
+ parent::__construct();
+ $defaults = array_combine([
+ 'guid' => 'guid',
+ 'url' => 'http://google.de',
+ 'title' => 'title',
+ 'author' => 'author',
+ 'pubDate' => 2323,
+ 'body' => 'this is a body',
+ 'enclosureMime' => 'video/mpeg',
+ 'enclosureLink' => 'http://google.de/web.webm',
+ 'feedId' => 0,
+ 'status' => 2,
+ 'lastModified' => 113,
+ 'rtl' => false,
+ ], $defaults);
+ $this->fillDefaults($defaults);
+ $this->generateSearchIndex();
+ $this->setGuid($this->getTitle());
+ $this->setGuidHash($this->getGuid());
+ }
+
+} \ No newline at end of file