1
0
mirror of https://github.com/danog/parallel.git synced 2024-12-02 09:37:57 +01:00
parallel/test/Worker/WorkerExceptionTest.php

17 lines
385 B
PHP
Raw Normal View History

2018-10-07 17:14:27 +02:00
<?php
namespace Amp\Parallel\Test\Worker;
use Amp\Parallel\Worker\WorkerException;
2019-08-27 19:17:41 +02:00
use Amp\PHPUnit\AsyncTestCase;
2018-10-07 17:14:27 +02:00
2019-08-27 19:17:41 +02:00
class WorkerExceptionTest extends AsyncTestCase
2018-10-07 17:14:27 +02:00
{
public function testConstructorShouldBeInstance()
{
$workerException = new WorkerException('work_exception_message');
$this->assertInstanceOf(WorkerException::class, $workerException);
}
}