mirror of
https://github.com/friendica/friendica
synced 2024-11-09 16:22:56 +00:00
27 lines
767 B
PHP
27 lines
767 B
PHP
<?php
|
|
/**
|
|
* This file is loaded by PHPUnit before any test.
|
|
*/
|
|
|
|
use Friendica\App;
|
|
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__));
|
|
|
|
\Friendica\Core\Config::set('system', 'url', 'http://localhost/');
|
|
|
|
// 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);
|
|
}
|