You are here

public static function PHPUnit_Framework_Assert::markTestIncomplete in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpunit/phpunit/src/Framework/Assert.php \PHPUnit_Framework_Assert::markTestIncomplete()

Mark the test as incomplete.

@since Method available since Release 3.0.0

Parameters

string $message:

Throws

PHPUnit_Framework_IncompleteTestError

9 calls to PHPUnit_Framework_Assert::markTestIncomplete()
DataProviderIncompleteTest::incompleteTestProviderMethod in vendor/phpunit/phpunit/tests/_files/DataProviderIncompleteTest.php
Framework_AssertTest::testMarkTestIncomplete in vendor/phpunit/phpunit/tests/Framework/AssertTest.php
@covers PHPUnit_Framework_Assert::markTestIncomplete
Framework_MockBuilderTest::testCallingAutoloadCanBeDisabled in vendor/phpunit/phpunit-mock-objects/tests/MockBuilderTest.php
IncompleteTest::testIncomplete in vendor/phpunit/phpunit/tests/_files/IncompleteTest.php
Issue1468Test::testFailure in vendor/phpunit/phpunit/tests/Regression/GitHub/1468/Issue1468Test.php
@todo Implement this test

... See full list

File

vendor/phpunit/phpunit/src/Framework/Assert.php, line 2984

Class

PHPUnit_Framework_Assert
A set of assert methods.

Code

public static function markTestIncomplete($message = '') {
  throw new PHPUnit_Framework_IncompleteTestError($message);
}