mirror of
https://github.com/werkraum-media/events.git
synced 2024-11-10 09:56:11 +01:00
52 lines
982 B
PHP
52 lines
982 B
PHP
|
<?php
|
||
|
namespace Wrm\Events\Tests\Unit\Domain\Model;
|
||
|
|
||
|
/**
|
||
|
* Test case.
|
||
|
*
|
||
|
* @author Dirk Koritnik <koritnik@werkraum-media.de>
|
||
|
*/
|
||
|
class RegionTest extends \TYPO3\TestingFramework\Core\Unit\UnitTestCase
|
||
|
{
|
||
|
/**
|
||
|
* @var \Wrm\Events\Domain\Model\Region
|
||
|
*/
|
||
|
protected $subject = null;
|
||
|
|
||
|
protected function setUp()
|
||
|
{
|
||
|
parent::setUp();
|
||
|
$this->subject = new \Wrm\Events\Domain\Model\Region();
|
||
|
}
|
||
|
|
||
|
protected function tearDown()
|
||
|
{
|
||
|
parent::tearDown();
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @test
|
||
|
*/
|
||
|
public function getTitleReturnsInitialValueForString()
|
||
|
{
|
||
|
self::assertSame(
|
||
|
'',
|
||
|
$this->subject->getTitle()
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @test
|
||
|
*/
|
||
|
public function setTitleForStringSetsTitle()
|
||
|
{
|
||
|
$this->subject->setTitle('Conceived at T3CON10');
|
||
|
|
||
|
self::assertAttributeEquals(
|
||
|
'Conceived at T3CON10',
|
||
|
'title',
|
||
|
$this->subject
|
||
|
);
|
||
|
}
|
||
|
}
|