mirror of
https://github.com/werkraum-media/events.git
synced 2024-11-23 00:56:11 +01:00
Daniel Siepmann
a9f3f108e3
The vendor was renamed from `wrm` to `werkraummedia`. And the namespace vendor was renamed from `Wrm` to `WerkraumMedia`. That way all references to PHP classes as well as the package name itself need to be adjusted.
63 lines
1.4 KiB
PHP
63 lines
1.4 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace WerkraumMedia\Events\Tests\Unit\Domain\Model;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
use TYPO3\CMS\Extbase\Persistence\ObjectStorage;
|
|
use WerkraumMedia\Events\Domain\Model\Category;
|
|
use WerkraumMedia\Events\Domain\Model\Event;
|
|
|
|
/**
|
|
* @covers \WerkraumMedia\Events\Domain\Model\Event
|
|
*/
|
|
class EventTest extends TestCase
|
|
{
|
|
/**
|
|
* @test
|
|
*/
|
|
public function canBeCreated(): void
|
|
{
|
|
$subject = new Event();
|
|
|
|
self::assertInstanceOf(
|
|
Event::class,
|
|
$subject
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function returnsSortedFeatures(): void
|
|
{
|
|
$feature1 = $this->createStub(Category::class);
|
|
$feature1->method('getSorting')->willReturn(10);
|
|
$feature2 = $this->createStub(Category::class);
|
|
$feature2->method('getSorting')->willReturn(5);
|
|
|
|
$storage = new ObjectStorage();
|
|
$storage->attach($feature1);
|
|
$storage->attach($feature2);
|
|
|
|
$subject = new Event();
|
|
$subject->_setProperty('features', $storage);
|
|
|
|
self::assertSame([
|
|
$feature2,
|
|
$feature1,
|
|
], $subject->getFeatures());
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function returnsEmptyFeaturesStorage(): void
|
|
{
|
|
$subject = new Event();
|
|
$subject->_setProperty('features', new ObjectStorage());
|
|
|
|
self::assertSame([], $subject->getFeatures());
|
|
}
|
|
}
|