protected function UUIDTaxonomyTestCase::assertUuid in Universally Unique IDentifier 7
Helper function that asserts a UUID.
1 call to UUIDTaxonomyTestCase::assertUuid()
- UUIDTaxonomyTestCase::testTaxonomyCrud in ./
uuid.test - Test CRUD on comments with UUID functions.
File
- ./
uuid.test, line 586 - Test suite for UUID module.
Class
- UUIDTaxonomyTestCase
- Tests the Taxonomy implementation.
Code
protected function assertUuid($uuid, $message = NULL) {
$this
->assertTrue(uuid_is_valid($uuid), $message);
}