Files
php-uuid/tests/Nonstandard/UuidBuilderTest.php
T
2020-02-26 20:17:49 -06:00

33 lines
889 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;
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');
}
}