2013-11-01 22:03:14 +01:00
|
|
|
<?php
|
2015-06-14 13:07:29 +02:00
|
|
|
namespace OliverKlee\Tea\Tests\Unit\Domain\Model;
|
2013-11-01 22:03:14 +01:00
|
|
|
|
2014-12-10 21:18:45 +01:00
|
|
|
/*
|
|
|
|
* This file is part of the TYPO3 CMS project.
|
2013-11-01 22:03:14 +01:00
|
|
|
*
|
2014-12-10 21:18:45 +01:00
|
|
|
* It is free software; you can redistribute it and/or modify it under
|
|
|
|
* the terms of the GNU General Public License, either version 2
|
|
|
|
* of the License, or any later version.
|
2013-11-01 22:03:14 +01:00
|
|
|
*
|
2014-12-10 21:18:45 +01:00
|
|
|
* For the full copyright and license information, please read the
|
|
|
|
* LICENSE.txt file that was distributed with this source code.
|
2013-11-01 22:03:14 +01:00
|
|
|
*
|
2014-12-10 21:18:45 +01:00
|
|
|
* The TYPO3 project - inspiring people to share!
|
|
|
|
*/
|
2013-11-01 22:03:14 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Test case.
|
|
|
|
*
|
|
|
|
* @author Oliver Klee <typo3-coding@oliverklee.de>
|
|
|
|
*/
|
2016-05-07 21:43:25 +02:00
|
|
|
class TestimonialTest extends \TYPO3\CMS\Core\Tests\UnitTestCase
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @var \OliverKlee\Tea\Domain\Model\Testimonial
|
|
|
|
*/
|
|
|
|
protected $subject = null;
|
2013-11-01 22:03:14 +01:00
|
|
|
|
2016-05-07 21:43:25 +02:00
|
|
|
protected function setUp()
|
|
|
|
{
|
|
|
|
$this->subject = new \OliverKlee\Tea\Domain\Model\Testimonial();
|
|
|
|
}
|
2013-11-01 22:03:14 +01:00
|
|
|
|
2016-05-07 21:43:25 +02:00
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function getDateOfPostingInitiallyReturnsNull()
|
|
|
|
{
|
2016-05-08 14:57:07 +02:00
|
|
|
self::assertNull($this->subject->getDateOfPosting());
|
2016-05-07 21:43:25 +02:00
|
|
|
}
|
2013-11-01 22:03:14 +01:00
|
|
|
|
2016-05-07 21:43:25 +02:00
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function setDateOfPostingSetsDateOfPosting()
|
|
|
|
{
|
|
|
|
$date = new \DateTime();
|
|
|
|
$this->subject->setDateOfPosting($date);
|
2013-11-01 22:03:14 +01:00
|
|
|
|
2016-05-07 21:43:25 +02:00
|
|
|
self::assertSame(
|
|
|
|
$date,
|
|
|
|
$this->subject->getDateOfPosting()
|
|
|
|
);
|
|
|
|
}
|
2013-11-01 22:03:14 +01:00
|
|
|
|
2016-05-07 21:43:25 +02:00
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function getNumberOfConsumedCupsInitiallyReturnsZero()
|
|
|
|
{
|
2016-05-08 14:57:07 +02:00
|
|
|
self::assertSame(0, $this->subject->getNumberOfConsumedCups());
|
2016-05-07 21:43:25 +02:00
|
|
|
}
|
2013-11-01 22:03:14 +01:00
|
|
|
|
2016-05-07 21:43:25 +02:00
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function setNumberOfConsumedCupsSetsNumberOfConsumedCups()
|
|
|
|
{
|
2016-05-08 14:57:07 +02:00
|
|
|
$number = 123456;
|
2013-11-01 22:03:14 +01:00
|
|
|
|
2016-05-08 14:57:07 +02:00
|
|
|
$this->subject->setNumberOfConsumedCups($number);
|
|
|
|
|
|
|
|
self::assertSame($number, $this->subject->getNumberOfConsumedCups());
|
2016-05-07 21:43:25 +02:00
|
|
|
}
|
2013-11-01 22:03:14 +01:00
|
|
|
|
2016-05-07 21:43:25 +02:00
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function getTextInitiallyReturnsEmptyString()
|
|
|
|
{
|
2016-05-08 14:57:07 +02:00
|
|
|
self::assertSame('', $this->subject->getText());
|
2016-05-07 21:43:25 +02:00
|
|
|
}
|
2013-11-01 22:03:14 +01:00
|
|
|
|
2016-05-07 21:43:25 +02:00
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function setTextSetsText()
|
|
|
|
{
|
2016-05-08 14:57:07 +02:00
|
|
|
$text = 'foo bar';
|
2013-11-01 22:03:14 +01:00
|
|
|
|
2016-05-08 14:57:07 +02:00
|
|
|
$this->subject->setText($text);
|
|
|
|
|
|
|
|
self::assertSame($text, $this->subject->getText());
|
2016-05-07 21:43:25 +02:00
|
|
|
}
|
2014-01-02 00:02:47 +01:00
|
|
|
}
|