* * 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(); } }