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
2018-05-25 16:19:12 +02:00

42 lines
1 KiB
PHP

<?php
declare(strict_types = 1);
namespace OliverKlee\Tea\Tests\Unit\Domain\Repository\Product;
use Nimut\TestingFramework\TestCase\UnitTestCase;
use OliverKlee\Tea\Domain\Repository\Product\TeaRepository;
use Prophecy\Prophecy\ProphecySubjectInterface;
use TYPO3\CMS\Extbase\Object\ObjectManagerInterface;
use TYPO3\CMS\Extbase\Persistence\Repository;
/**
* Test case.
*
* @author Oliver Klee <typo3-coding@oliverklee.de
*/
class TeaRepositoryTest extends UnitTestCase
{
/**
* @var TeaRepository
*/
private $subject = null;
/**
* @var ObjectManagerInterface|ProphecySubjectInterface
*/
protected $objectManager = null;
protected function setUp()
{
$objectManagerProphecy = $this->prophesize(ObjectManagerInterface::class);
$this->objectManager = $objectManagerProphecy->reveal();
$this->subject = new TeaRepository($this->objectManager);
}
/**
* @test
*/
public function isRepository()
{
static::assertInstanceOf(Repository::class, $this->subject);
}
}