mirror of
https://github.com/danog/endtoend-test-psl.git
synced 2024-12-02 09:38:32 +01:00
22 lines
377 B
PHP
22 lines
377 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Psl\Tests\Fun;
|
|
|
|
use Exception;
|
|
use PHPUnit\Framework\TestCase;
|
|
use Psl\Fun;
|
|
|
|
final class RethrowTest extends TestCase
|
|
{
|
|
public function testRethrow(): void
|
|
{
|
|
$exception = new Exception('foo');
|
|
$rethrow = Fun\rethrow();
|
|
|
|
$this->expectExceptionObject($exception);
|
|
$rethrow($exception);
|
|
}
|
|
}
|