You are here

function UUIDTestHelper::markIncomplete in Universally Unique IDentifier 6

Sets a fail message in the test for further reviewing.

Parameters

text $message: text message to show.

7 calls to UUIDTestHelper::markIncomplete()
UUIDFunctionalityTestCase::testDefaultCommentUUID in ./uuid.test
Verify uuid behavior for comment.
UUIDFunctionalityTestCase::testDefaultTaxonomyUUID in ./uuid.test
Verify uuid behavior for taxonomy.
UUIDFunctionalityTestCase::testDisabledCommentUUID in ./uuid.test
Verify uuid behavior for comment.
UUIDFunctionalityTestCase::testDisabledTaxonomyUUID in ./uuid.test
Verify uuid behavior for taxonomy.
UUIDFunctionalityTestCase::testEnabledCommentUUID in ./uuid.test
Verify uuid behavior for comment.

... See full list

File

./uuid.test, line 88
Functionality tests for UUID module.

Class

UUIDTestHelper
Helper test class with some added functions for testing.

Code

function markIncomplete($message) {
  $this
    ->pass($message, 'Debug');
}