summaryrefslogtreecommitdiffstats
path: root/tests/integration/fixtures/Fixture.php
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2015-11-30 21:04:55 +0100
committerBernhard Posselt <dev@bernhard-posselt.com>2016-01-17 18:18:39 +0100
commit2bbd1e10a8a315c715095eed6536b6b319aeb974 (patch)
treed31ae5d0b83305b7bc47dc08271920181a5219cc /tests/integration/fixtures/Fixture.php
parent646b5296843de0815c47fe809178613a5b4fafaa (diff)
fix various things
Diffstat (limited to 'tests/integration/fixtures/Fixture.php')
-rw-r--r--tests/integration/fixtures/Fixture.php26
1 files changed, 0 insertions, 26 deletions
diff --git a/tests/integration/fixtures/Fixture.php b/tests/integration/fixtures/Fixture.php
deleted file mode 100644
index 2e546c4a5..000000000
--- a/tests/integration/fixtures/Fixture.php
+++ /dev/null
@@ -1,26 +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 Entity {
-
- public function fillDefaults(array $defaults=[]) {
- foreach ($defaults as $key => $value) {
- $method = 'set' . ucfirst($key);
- $this->$method($value);
- }
- $this->resetUpdatedFields();
- }
-
-} \ No newline at end of file