29 lines
647 B
PHP
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();
|
|
}
|
|
}
|