a new unittest for prefix
This commit is contained in:
parent
a84c94e94b
commit
e5c767d809
|
@ -7,10 +7,11 @@ use PHPUnit\Framework\TestCase;
|
|||
|
||||
class SystemTest extends TestCase
|
||||
{
|
||||
private function assertGuid($guid, $length)
|
||||
private function assertGuid($guid, $length, $prefix = '')
|
||||
{
|
||||
print $guid;
|
||||
$this->assertRegExp("/^[a-z0-9]{" . $length . "}?$/", $guid);
|
||||
$length -= strlen($prefix);
|
||||
$this->assertRegExp("/^" . $prefix . "[a-z0-9]{" . $length . "}?$/", $guid);
|
||||
}
|
||||
|
||||
function testGuidWithoutParameter()
|
||||
|
@ -28,4 +29,9 @@ class SystemTest extends TestCase
|
|||
$guid = System::createGUID(64);
|
||||
$this->assertGuid($guid, 64);
|
||||
}
|
||||
|
||||
function testGuidWithPrefix() {
|
||||
$guid = System::createGUID(23, 'test');
|
||||
$this->assertGuid($guid, 23, 'test');
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue