]> git.mxchange.org Git - friendica.git/blobdiff - tests/DatabaseTest.php
Posts per author/server on the community pages (#13764)
[friendica.git] / tests / DatabaseTest.php
index 1e581725da1893130469880ac44b5893e07d637b..03bebb7b54b4f69c09c45f74867cc5e9213359f0 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2020, Friendica
+ * @copyright Copyright (C) 2010-2023, 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();
+       }
 }