summaryrefslogtreecommitdiffstats
path: root/tests/integration/fixtures/fixture.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/integration/fixtures/fixture.php')
-rw-r--r--tests/integration/fixtures/fixture.php25
1 files changed, 0 insertions, 25 deletions
diff --git a/tests/integration/fixtures/fixture.php b/tests/integration/fixtures/fixture.php
deleted file mode 100644
index a5bceda17..000000000
--- a/tests/integration/fixtures/fixture.php
+++ /dev/null
@@ -1,25 +0,0 @@
-<?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;
-
-
-trait Fixture {
-
- protected function fillDefaults(array $defaults=[]) {
- foreach ($defaults as $key => $value) {
- $method = 'set' . ucfirst($key);
- $this->$method($value);
- }
- }
-
-} \ No newline at end of file