added team permissions (#996)
This commit is contained in:
@@ -17,13 +17,18 @@ abstract class AbstractMockFactory
|
||||
/**
|
||||
* @var TestCase
|
||||
*/
|
||||
protected $testCase;
|
||||
private $testCase;
|
||||
|
||||
public function __construct(TestCase $testCase)
|
||||
{
|
||||
$this->testCase = $testCase;
|
||||
}
|
||||
|
||||
protected function getTestCase(): TestCase
|
||||
{
|
||||
return $this->testCase;
|
||||
}
|
||||
|
||||
protected function getMockBuilder(string $className): MockBuilder
|
||||
{
|
||||
return new MockBuilder($this->testCase, $className);
|
||||
|
||||
Reference in New Issue
Block a user