1
0
mirror of https://github.com/danog/file.git synced 2024-12-13 17:57:23 +01:00
file/test/ParallelDriverTest.php

15 lines
375 B
PHP
Raw Normal View History

<?php
2016-08-30 21:05:14 +02:00
namespace Amp\File\Test;
use Amp\Parallel\Worker\DefaultPool;
class ParallelDriverTest extends DriverTest {
protected function lRun(callable $cb) {
\Interop\Async\Loop::execute(function() use ($cb) {
\Amp\File\filesystem(new \Amp\File\ParallelDriver(new DefaultPool));
\Amp\rethrow(new \Amp\Coroutine($cb()));
});
}
}