Files
kimai2/tests/Mocks/AbstractMockFactory.php
Kevin Papst c8098b2e00 Release 1.19.7 (#3286)
* fix isWeekend() test for sunday fdow
* re-use the pattern for optgroup title
* prevent method on null
* composer update
* pre-select an option if it is the only available one
* added command to stop all active timesheets
2022-05-07 23:47:32 +02:00

42 lines
899 B
PHP

<?php
/*
* This file is part of the Kimai time-tracking app.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace App\Tests\Mocks;
use PHPUnit\Framework\MockObject\MockBuilder;
use PHPUnit\Framework\TestCase;
abstract class AbstractMockFactory
{
/**
* @var TestCase
*/
private $testCase;
public function __construct(TestCase $testCase)
{
$this->testCase = $testCase;
}
protected function getTestCase(): TestCase
{
return $this->testCase;
}
protected function createMock(string $className)
{
return $this->getMockBuilder($className)->disableOriginalConstructor()->getMock();
}
protected function getMockBuilder(string $className): MockBuilder
{
return new MockBuilder($this->testCase, $className);
}
}