mirror of
https://github.com/danog/parallel.git
synced 2024-12-04 02:27:55 +01:00
32 lines
859 B
PHP
32 lines
859 B
PHP
<?php
|
|
|
|
namespace Amp\Parallel\Test\Worker;
|
|
|
|
use Amp\Parallel\Worker\Internal\TaskFailure;
|
|
use Amp\Parallel\Worker\TaskError;
|
|
use Amp\Parallel\Worker\TaskException;
|
|
use Amp\PHPUnit\AsyncTestCase;
|
|
|
|
class TaskFailureTest extends AsyncTestCase
|
|
{
|
|
public function testWithException()
|
|
{
|
|
$this->expectException(TaskException::class);
|
|
$this->expectExceptionMessage('Uncaught Exception in worker');
|
|
|
|
$exception = new \Exception("Message", 1);
|
|
$result = new TaskFailure('a', $exception);
|
|
yield $result->promise();
|
|
}
|
|
|
|
public function testWithError()
|
|
{
|
|
$this->expectException(TaskError::class);
|
|
$this->expectExceptionMessage('Uncaught Error in worker');
|
|
|
|
$exception = new \Error("Message", 1);
|
|
$result = new TaskFailure('a', $exception);
|
|
yield $result->promise();
|
|
}
|
|
}
|