mirror of
https://github.com/ramsey/uuid.git
synced 2026-06-15 16:07:55 +03:00
17 lines
342 B
PHP
17 lines
342 B
PHP
<?php
|
|
|
|
namespace Rhumsaa\Uuid;
|
|
|
|
class UnsatisfiedNumberConverterTest extends TestCase
|
|
{
|
|
/**
|
|
* @expectedException Rhumsaa\Uuid\Exception\UnsatisfiedDependencyException
|
|
*/
|
|
public function testConverterThrowsException()
|
|
{
|
|
$converter = new UnsatisfiedNumberConverter();
|
|
|
|
$converter->fromHex('ffff');
|
|
}
|
|
}
|