You are here

protected static function PHPUnit_Framework_TestSuite::warning in Zircon Profile 8

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

Parameters

string $message:

Return value

PHPUnit_Framework_Warning

3 calls to PHPUnit_Framework_TestSuite::warning()
PHPUnit_Framework_TestSuite::addTestMethod in vendor/phpunit/phpunit/src/Framework/TestSuite.php
PHPUnit_Framework_TestSuite::createTest in vendor/phpunit/phpunit/src/Framework/TestSuite.php
PHPUnit_Framework_TestSuite::__construct in vendor/phpunit/phpunit/src/Framework/TestSuite.php
Constructs a new TestSuite:

File

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

Class

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

Code

protected static function warning($message) {
  return new PHPUnit_Framework_Warning($message);
}