]> git.mxchange.org Git - friendica.git/blobdiff - tests/DatabaseTest.php
Tests
[friendica.git] / tests / DatabaseTest.php
index b69adc4a1e12c36c80334d415ef2d61a2c3e28c9..cc13c4bc897d697a587daa96b2a46f7595a4763f 100644 (file)
@@ -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();
+       }
 }