]> git.mxchange.org Git - friendica.git/blobdiff - tests/bootstrap.php
spelling: endpoints
[friendica.git] / tests / bootstrap.php
index 34467b7607c75bda6490621e85f660561f56980f..9f7c1c3f9195f0df55ee744b0f3c6144e85600d1 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2010-2021, the Friendica project
+ * @copyright Copyright (C) 2010-2023, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -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')) {
@@ -32,10 +30,5 @@ require __DIR__ . '/../vendor/autoload.php';
 
 // Backward compatibility
 if (!class_exists(TestCase::class)) {
-       class_alias(PHPUnit_Framework_TestCase::class, 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);