]> git.mxchange.org Git - friendica.git/blobdiff - tests/bootstrap.php
Refactor deprecated App::getArgumentValue() to DI::args()->get()
[friendica.git] / tests / bootstrap.php
index 4b03aa246b11056c2241af8d29feed9c45b6fc08..a839dbed73c832fcfa8ab773bc154a6fd1b251a0 100644 (file)
@@ -3,22 +3,9 @@
  * This file is loaded by PHPUnit before any test.
  */
 
-use PHPUnit\DbUnit\DataSet\YamlDataSet;
-use PHPUnit\DbUnit\TestCaseTrait;
 use PHPUnit\Framework\TestCase;
 
-require_once __DIR__.'/../boot.php';
-require_once __DIR__.'/../include/api.php';
-
-new App(dirname(__DIR__));
-
 // Backward compatibility
 if (!class_exists(TestCase::class)) {
        class_alias(PHPUnit_Framework_TestCase::class, TestCase::class);
 }
-if (!trait_exists(TestCaseTrait::class)) {
-       class_alias(PHPUnit_Extensions_Database_TestCase_Trait::class, TestCaseTrait::class);
-}
-if (!class_exists(YamlDataSet::class)) {
-       class_alias(PHPUnit_Extensions_Database_DataSet_YamlDataSet::class, YamlDataSet::class);
-}