X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=tests%2FDatabaseTest.php;h=03bebb7b54b4f69c09c45f74867cc5e9213359f0;hb=76c006d5603250b06db2c54ecdc9483af8d47b36;hp=7421f16a09c5342e313c12aa70d161577974e2ba;hpb=0a82fe4211f73cf10107feb69fe38eaa85eb61f8;p=friendica.git diff --git a/tests/DatabaseTest.php b/tests/DatabaseTest.php index 7421f16a09..03bebb7b54 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(); + } }