Files
wyczarujprezent.pl/modules/ps_metrics/vendor/overblog/dataloader-php/tests/TestCase.php
2024-10-28 22:14:22 +01:00

29 lines
647 B
PHP

<?php
/*
* This file is part of the DataLoaderPhp package.
*
* (c) Overblog <http://github.com/overblog/>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Overblog\DataLoader\Test;
use Overblog\PromiseAdapter\Adapter\ReactPromiseAdapter;
use Overblog\PromiseAdapter\PromiseAdapterInterface;
abstract class TestCase extends \PHPUnit_Framework_TestCase
{
/**
* @var PromiseAdapterInterface
*/
protected static $promiseAdapter;
public function setUp()
{
self::$promiseAdapter = new ReactPromiseAdapter();
}
}