mirror of
https://github.com/danog/process.git
synced 2025-01-23 06:11:34 +01:00
17 lines
316 B
PHP
17 lines
316 B
PHP
<?php
|
|
|
|
namespace Amp\Process\Test;
|
|
|
|
|
|
use Amp\NativeReactor;
|
|
|
|
class NativeReactorProcessTest extends AbstractProcessTest {
|
|
|
|
public function setUp(){
|
|
\Amp\reactor(new NativeReactor());
|
|
}
|
|
|
|
public function testReactor() {
|
|
$this->assertInstanceOf('\Amp\NativeReactor', \Amp\reactor());
|
|
}
|
|
} |