mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-10-19 05:36:12 +02:00
tea/Tests/Unit/Domain/Repository/Product/TeaRepositoryTest.php
Łukasz Uznański f0127b3b64
[TASK] Fix php cs related to official configuration (#341)
Co-authored-by: Łukasz Uznański <l.uznanski@macopedia.com>
2021-11-17 13:14:43 +01:00

41 lines
986 B
PHP

<?php
declare(strict_types=1);
namespace TTN\Tea\Tests\Unit\Domain\Repository\Product;
use Nimut\TestingFramework\TestCase\UnitTestCase;
use Prophecy\Prophecy\ProphecySubjectInterface;
use TTN\Tea\Domain\Repository\Product\TeaRepository;
use TYPO3\CMS\Extbase\Object\ObjectManagerInterface;
use TYPO3\CMS\Extbase\Persistence\Repository;
/**
* @covers \TTN\Tea\Domain\Repository\Product\TeaRepository
*/
class TeaRepositoryTest extends UnitTestCase
{
/**
* @var TeaRepository
*/
private $subject;
/**
* @var ObjectManagerInterface&ProphecySubjectInterface
*/
protected $objectManager;
protected function setUp(): void
{
$this->objectManager = $this->prophesize(ObjectManagerInterface::class)->reveal();
$this->subject = new TeaRepository($this->objectManager);
}
/**
* @test
*/
public function isRepository(): void
{
self::assertInstanceOf(Repository::class, $this->subject);
}
}