mirror of
https://github.com/danog/amp.git
synced 2025-01-22 05:11:42 +01:00
10 lines
187 B
PHP
10 lines
187 B
PHP
<?php
|
|
|
|
namespace Amp\Test;
|
|
|
|
abstract class BaseTest extends \PHPUnit_Framework_TestCase {
|
|
protected function setUp() {
|
|
\Amp\reactor($assign = new \Amp\NativeReactor);
|
|
}
|
|
}
|