summaryrefslogtreecommitdiffstats
path: root/tests/integration/fixtures/ItemFixture.php
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2015-11-29 22:14:56 +0100
committerBernhard Posselt <dev@bernhard-posselt.com>2016-01-17 18:18:39 +0100
commit646b5296843de0815c47fe809178613a5b4fafaa (patch)
treea720bc5b8d455f0e7753deb79b705d8ae6528927 /tests/integration/fixtures/ItemFixture.php
parentd0155e9d66665a7195194a988e16ff16623e28f0 (diff)
update fixtures to simpler array
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