Removes isInParallel

This commit is contained in:
luke
2021-08-13 10:14:01 +01:00
parent 45e76a6df6
commit 03d34e9a10
9 changed files with 8 additions and 50 deletions

View File

@ -304,12 +304,4 @@ trait Testable
{
return ltrim(self::class, 'P\\');
}
/**
* Determine whether this test case is being executed in a parallel environment.
*/
public function isInParallel(): bool
{
return TestSuite::getInstance()->isInParallel;
}
}

View File

@ -73,13 +73,6 @@ final class TestSuite
*/
public $testPath;
/**
* Whether this test is running as part of a parallel suite.
*
* @var bool
*/
public $isInParallel = false;
/**
* Holds an instance of the test suite.
*