mirror of
https://github.com/danog/file.git
synced 2024-11-26 20:04:51 +01:00
17 lines
349 B
PHP
17 lines
349 B
PHP
<?php
|
|
|
|
namespace Amp\Fs\Test;
|
|
|
|
use Amp\Reactor;
|
|
use Amp\NativeReactor;
|
|
use Amp\Fs\BlockingFilesystem;
|
|
|
|
class BlockingFilesystemTest extends FilesystemTest {
|
|
protected function getReactor() {
|
|
return new NativeReactor;
|
|
}
|
|
protected function getFilesystem(Reactor $reactor) {
|
|
return new BlockingFilesystem($reactor);
|
|
}
|
|
}
|