From: Philipp Holzer Date: Sat, 28 Sep 2019 23:57:45 +0000 (+0200) Subject: Remove DBUnit dependencies X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=04cf13e022dd8427d3ae14e8e87d8c33bbb3af9a;p=friendica.git Remove DBUnit dependencies --- diff --git a/tests/bootstrap.php b/tests/bootstrap.php index ada2b1a0ec..a839dbed73 100644 --- a/tests/bootstrap.php +++ b/tests/bootstrap.php @@ -3,17 +3,9 @@ * This file is loaded by PHPUnit before any test. */ -use PHPUnit\DbUnit\DataSet\YamlDataSet; -use PHPUnit\DbUnit\TestCaseTrait; use PHPUnit\Framework\TestCase; // 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); -}