Home
last modified time | relevance | path

Searched refs:runTestInSeparateProcess (Results 1 – 5 of 5) sorted by relevance

/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/
H A DTestSuite.php45 protected $runTestInSeparateProcess = false; variable in PHPUnit_Framework_TestSuite
449 $runTestInSeparateProcess = PHPUnit_Util_Test::getProcessIsolationSettings(
544 if ($runTestInSeparateProcess) {
580 if ($runTestInSeparateProcess) {
730 $test->setRunTestInSeparateProcess($this->runTestInSeparateProcess);
750 * @param bool $runTestInSeparateProcess
754 public function setRunTestInSeparateProcess($runTestInSeparateProcess) argument
756 if (is_bool($runTestInSeparateProcess)) {
757 $this->runTestInSeparateProcess = $runTestInSeparateProcess;
H A DWarningTestCase.php34 protected $runTestInSeparateProcess = false; variable in PHPUnit_Framework_WarningTestCase
H A DSkippedTestCase.php34 protected $runTestInSeparateProcess = false; variable in PHPUnit_Framework_SkippedTestCase
H A DIncompleteTestCase.php34 protected $runTestInSeparateProcess = false; variable in PHPUnit_Framework_IncompleteTestCase
H A DTestCase.php100 protected $runTestInSeparateProcess = null; variable in PHPUnit_Framework_TestCase
772 if ($this->runTestInSeparateProcess === true &&
1253 * @param bool $runTestInSeparateProcess
1257 public function setRunTestInSeparateProcess($runTestInSeparateProcess) argument
1259 if (is_bool($runTestInSeparateProcess)) {
1260 if ($this->runTestInSeparateProcess === null) {
1261 $this->runTestInSeparateProcess = $runTestInSeparateProcess;
2240 if ($this->runTestInSeparateProcess ||