mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 07:16:16 +01:00
e469041db7
The `@var` annotations where left where it is not possible yet to replace them in PHP 7.4. Fixes #550 Co-authored-by: lina.wolf <lwolf@w-commerce.de>
90 lines
1.8 KiB
PHP
90 lines
1.8 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace TTN\Tea\Tests\Unit\Domain\Model\Product;
|
|
|
|
use TTN\Tea\Domain\Model\Product\Tea;
|
|
use TYPO3\CMS\Extbase\Domain\Model\FileReference;
|
|
use TYPO3\CMS\Extbase\DomainObject\AbstractEntity;
|
|
use TYPO3\TestingFramework\Core\Unit\UnitTestCase;
|
|
|
|
/**
|
|
* @covers \TTN\Tea\Domain\Model\Product\Tea
|
|
*/
|
|
class TeaTest extends UnitTestCase
|
|
{
|
|
private Tea $subject;
|
|
|
|
protected function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
|
|
$this->subject = new Tea();
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function isAbstractEntity(): void
|
|
{
|
|
self::assertInstanceOf(AbstractEntity::class, $this->subject);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function getTitleInitiallyReturnsEmptyString(): void
|
|
{
|
|
self::assertSame('', $this->subject->getTitle());
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function setTitleSetsTitle(): void
|
|
{
|
|
$value = 'Club-Mate';
|
|
$this->subject->setTitle($value);
|
|
|
|
self::assertSame($value, $this->subject->getTitle());
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function getDescriptionInitiallyReturnsEmptyString(): void
|
|
{
|
|
self::assertSame('', $this->subject->getDescription());
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function setDescriptionSetsDescription(): void
|
|
{
|
|
$value = 'Club-Mate';
|
|
$this->subject->setDescription($value);
|
|
|
|
self::assertSame($value, $this->subject->getDescription());
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function getImageInitiallyReturnsNull(): void
|
|
{
|
|
self::assertNull($this->subject->getImage());
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function setImageSetsImage(): void
|
|
{
|
|
$model = new FileReference();
|
|
$this->subject->setImage($model);
|
|
|
|
self::assertSame($model, $this->subject->getImage());
|
|
}
|
|
}
|