You are here

protected static function PHPUnit_Framework_TestSuite::incompleteTest in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpunit/phpunit/src/Framework/TestSuite.php \PHPUnit_Framework_TestSuite::incompleteTest()

@since Method available since Release 4.3.0

Parameters

string $class:

string $methodName:

string $message:

Return value

PHPUnit_Framework_IncompleteTestCase

1 call to PHPUnit_Framework_TestSuite::incompleteTest()
PHPUnit_Framework_TestSuite::createTest in vendor/phpunit/phpunit/src/Framework/TestSuite.php

File

vendor/phpunit/phpunit/src/Framework/TestSuite.php, line 922

Class

PHPUnit_Framework_TestSuite
A TestSuite is a composite of Tests. It runs a collection of test cases.

Code

protected static function incompleteTest($class, $methodName, $message) {
  return new PHPUnit_Framework_IncompleteTestCase($class, $methodName, $message);
}