summaryrefslogtreecommitdiffstats
path: root/tests/Integration/Fixtures/Fixture.php
diff options
context:
space:
mode:
authorSean Molenaar <sean@seanmolenaar.eu>2020-12-26 13:09:41 +0100
committerSean Molenaar <SMillerDev@users.noreply.github.com>2020-12-29 14:15:34 +0100
commit27bd54058050a70bd1c9ec8cfcdf42d38541f1b0 (patch)
tree371914f2ada32c4aa7eb7d48b0163ac77a4c6883 /tests/Integration/Fixtures/Fixture.php
parent0f1731833f8b6aea97b0816fe090f6dffacd6fd4 (diff)
Remove PHPunit integration tests
Signed-off-by: Sean Molenaar <sean@seanmolenaar.eu>
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 366c93228..000000000
--- a/tests/Integration/Fixtures/Fixture.php
+++ /dev/null
@@ -1,26 +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;
-
-
-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