]> git.mxchange.org Git - friendica.git/blobdiff - tests/DatabaseTest.php
Deprecated the notify table/classes
[friendica.git] / tests / DatabaseTest.php
index b69adc4a1e12c36c80334d415ef2d61a2c3e28c9..97f73a7291828d05ccd880d34260baa8abbc684c 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2010-2021, the Friendica project
+ * @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();
+       }
 }