]> git.mxchange.org Git - friendica.git/blobdiff - tests/DatabaseTest.php
Some more avatar function replacements
[friendica.git] / tests / DatabaseTest.php
index 1783bc605377c3d2a3b998d09178b9f468e3a42d..1e581725da1893130469880ac44b5893e07d637b 100644 (file)
@@ -1,33 +1,30 @@
 <?php
 /**
- * DatabaseTest class.
+ * @copyright Copyright (C) 2020, Friendica
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
+ *
  */
 
 namespace Friendica\Test;
 
-use Friendica\Test\Util\Database\StaticDatabase;
-
 /**
  * Abstract class used by tests that need a database.
  */
 abstract class DatabaseTest extends MockedTest
 {
-       protected function setUp()
-       {
-               parent::setUp();
-
-               StaticDatabase::statConnect($_SERVER);
-               // Rollbacks every DB usage (in case the test couldn't call tearDown)
-               StaticDatabase::statRollback();
-               // Start the first, outer transaction
-               StaticDatabase::getGlobConnection()->beginTransaction();
-       }
-
-       protected function tearDown()
-       {
-               // Rollbacks every DB usage so we don't commit anything into the DB
-               StaticDatabase::statRollback();
-
-               parent::tearDown();
-       }
+       use DatabaseTestTrait;
 }