You are here

public static function PHPUnit_Util_Test::getErrorHandlerSettings in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpunit/phpunit/src/Util/Test.php \PHPUnit_Util_Test::getErrorHandlerSettings()

Returns the error handler settings for a test.

@since Method available since Release 3.4.0

Parameters

string $className:

string $methodName:

Return value

bool

1 call to PHPUnit_Util_Test::getErrorHandlerSettings()
PHPUnit_Framework_TestCase::setUseErrorHandlerFromAnnotation in vendor/phpunit/phpunit/src/Framework/TestCase.php
@since Method available since Release 3.4.0

File

vendor/phpunit/phpunit/src/Util/Test.php, line 589

Class

PHPUnit_Util_Test
Test helpers.

Code

public static function getErrorHandlerSettings($className, $methodName) {
  return self::getBooleanAnnotationSetting($className, $methodName, 'errorHandler');
}