mirror of
https://github.com/danog/file.git
synced 2024-11-26 20:04:51 +01:00
17 lines
344 B
PHP
17 lines
344 B
PHP
<?php
|
|
|
|
namespace Amp\File\Test;
|
|
|
|
use Amp as amp;
|
|
use Amp\File as file;
|
|
|
|
class BlockingHandleTest extends HandleTest {
|
|
protected function setUp() {
|
|
$reactor = new amp\NativeReactor;
|
|
amp\reactor($reactor);
|
|
$driver = new file\BlockingDriver($reactor);
|
|
file\filesystem($driver);
|
|
parent::setUp();
|
|
}
|
|
}
|