mirror of
https://github.com/ramsey/uuid.git
synced 2026-06-14 15:56:48 +03:00
34 lines
910 B
PHP
34 lines
910 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Ramsey\Uuid\Test\Nonstandard;
|
|
|
|
use Mockery;
|
|
use Ramsey\Uuid\Codec\CodecInterface;
|
|
use Ramsey\Uuid\Exception\UnableToBuildUuidException;
|
|
use Ramsey\Uuid\Nonstandard\UuidBuilder;
|
|
use Ramsey\Uuid\Test\TestCase;
|
|
use RuntimeException;
|
|
|
|
class UuidBuilderTest extends TestCase
|
|
{
|
|
public function testBuildThrowsException(): void
|
|
{
|
|
$codec = Mockery::mock(CodecInterface::class);
|
|
|
|
$builder = Mockery::mock(UuidBuilder::class);
|
|
$builder->shouldAllowMockingProtectedMethods();
|
|
$builder->shouldReceive('buildFields')->andThrow(
|
|
RuntimeException::class,
|
|
'exception thrown'
|
|
);
|
|
$builder->shouldReceive('build')->passthru();
|
|
|
|
$this->expectException(UnableToBuildUuidException::class);
|
|
$this->expectExceptionMessage('exception thrown');
|
|
|
|
$builder->build($codec, 'foobar');
|
|
}
|
|
}
|