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