phpunit compat 5.6 vs 7.x

This commit is contained in:
Tobias Diekershoff 2018-04-23 08:42:13 +02:00
vanhempi aa6584684e
commit 0a58637ace
1 muutettua tiedostoa jossa 6 lisäystä ja 3 poistoa

Näytä tiedosto

@ -7,12 +7,15 @@ namespace Friendica\Test;
use Friendica\App;
use Friendica\BaseObject;
use PHPUnit_Framework_TestCase;
// backward compatibility
if (!class_exists('\PHPUnit\Framework\TestCase')) {
class_alias('\PHPUnit_Framework_TestCase', '\PHPUnit\Framework\TestCase');
}
use \PHPUnit_Framework_TestCase;
/**
* Tests for the BaseObject class.
*/
class BaseObjectTest extends PHPUnit_Framework_TestCase
class BaseObjectTest extends \PHPUnit\Framework\TestCase
{
/**