OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
firebase
/
vendor
/
ramsey
/
uuid
/
tests
/
Guid
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/12/2024 10:36:11 AM
rwxr-xr-x
📄
FieldsTest.php
10.3 KB
08/12/2024 10:34:38 AM
rw-r--r--
📄
GuidBuilderTest.php
929 bytes
08/12/2024 10:34:38 AM
rw-r--r--
Editing: GuidBuilderTest.php
Close
<?php declare(strict_types=1); namespace Ramsey\Uuid\Test\Guid; use Mockery; use Ramsey\Uuid\Codec\CodecInterface; use Ramsey\Uuid\Exception\UnableToBuildUuidException; use Ramsey\Uuid\Guid\GuidBuilder; use Ramsey\Uuid\Test\TestCase; use RuntimeException; class GuidBuilderTest extends TestCase { public function testBuildThrowsException(): void { $codec = Mockery::mock(CodecInterface::class); $builder = Mockery::mock(GuidBuilder::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'); } }