Returns the process isolation settings for a test.
@since Method available since Release 3.4.1
string $className:
string $methodName:
boolean
public static function getProcessIsolationSettings($className, $methodName) {
$annotations = self::parseTestMethodAnnotations($className, $methodName);
if (isset($annotations['class']['runTestsInSeparateProcesses']) || isset($annotations['method']['runInSeparateProcess'])) {
return TRUE;
}
else {
return FALSE;
}
}