Files
php-uuid/tests/UnsatisfiedNumberConverterTest.php
T
2014-10-30 15:16:59 +01:00

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