assertRegExp("/^[a-z0-9]{" . $length . "}?$/", $guid); } function testGuidWithoutParameter() { $guid = System::createGUID(); $this->assertGuid($guid, 16); } function testGuidWithSize() { $guid = System::createGUID(20); $this->assertGuid($guid, 20); } }