X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=tests%2FDatabaseTest.php;h=97f73a7291828d05ccd880d34260baa8abbc684c;hb=20291ddc2b2a1d4b23c6c2f904a5851dfbb1fafd;hp=7421f16a09c5342e313c12aa70d161577974e2ba;hpb=f1e7d97b8cae93e1c77f5a5085880409b01fcdbe;p=friendica.git diff --git a/tests/DatabaseTest.php b/tests/DatabaseTest.php index 7421f16a09..97f73a7291 100644 --- a/tests/DatabaseTest.php +++ b/tests/DatabaseTest.php @@ -1,6 +1,22 @@ . + * */ namespace Friendica\Test; @@ -11,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(); + } }