]> git.mxchange.org Git - friendica.git/blobdiff - tests/DatabaseTest.php
Deprecated the notify table/classes
[friendica.git] / tests / DatabaseTest.php
index 1e581725da1893130469880ac44b5893e07d637b..97f73a7291828d05ccd880d34260baa8abbc684c 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2020, Friendica
+ * @copyright Copyright (C) 2010-2022, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -27,4 +27,18 @@ namespace Friendica\Test;
 abstract class DatabaseTest extends MockedTest
 {
        use DatabaseTestTrait;
+
+       protected function setUp(): void
+       {
+               $this->setUpDb();
+
+               parent::setUp();
+       }
+
+       protected function tearDown(): void
+       {
+               $this->tearDownDb();
+
+               parent::tearDown();
+       }
 }