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.php56
1 files changed, 0 insertions, 56 deletions
diff --git a/tests/Integration/Fixtures/ItemFixture.php b/tests/Integration/Fixtures/ItemFixture.php
deleted file mode 100644
index 978b12b55..000000000
--- a/tests/Integration/Fixtures/ItemFixture.php
+++ /dev/null
@@ -1,56 +0,0 @@
-<?php
-/**
- * Nextcloud - 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_merge(
- [
- 'url' => 'http://google.de',
- 'title' => 'title',
- 'author' => 'my author',
- 'pubDate' => 2323,
- 'body' => 'this is a body',
- 'enclosureMime' => 'video/mpeg',
- 'enclosureLink' => 'http://google.de/web.webm',
- 'mediaThumbnail' => 'https://i3.ytimg.com/vi/Zgge1O9wdPY/hqdefault.jpg',
- 'mediaDescription' => 'The best video ever',
- 'feedId' => 0,
- 'unread' => true,
- 'starred' => false,
- 'lastModified' => 113,
- 'rtl' => false,
- ],
- $defaults
- );
-
- if (!array_key_exists('guid', $defaults)) {
- $defaults['guid'] = $defaults['title'];
- }
-
- if (!array_key_exists('guidHash', $defaults)) {
- $defaults['guidHash'] = $defaults['guid'];
- }
-
- $this->fillDefaults($defaults);
- $this->generateSearchIndex();
- }
-
-}