Optimize phpunit

This commit is contained in:
Philipp
2023-02-12 14:57:55 +01:00
parent 3edc5553c6
commit 4d6c8241fc
2 changed files with 17 additions and 7 deletions

View File

@@ -20,8 +20,6 @@
* This file is loaded by PHPUnit before any test.
*/
use Dice\Dice;
use Friendica\DI;
use PHPUnit\Framework\TestCase;
if (!file_exists(__DIR__ . '/../vendor/autoload.php')) {
@@ -34,8 +32,3 @@ require __DIR__ . '/../vendor/autoload.php';
if (!class_exists(TestCase::class)) {
class_alias(\PHPUnit\Framework\TestCase::class, TestCase::class);
}
$dice = new Dice();
$dice = $dice->addRules(include __DIR__ . '/../static/dependencies.config.php');
DI::init($dice);