2013-11-01 20:11:03 +01:00
|
|
|
<?php
|
2017-09-08 18:04:28 +02:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2015-06-14 13:07:29 +02:00
|
|
|
namespace OliverKlee\Tea\Tests\Unit\Domain\Model;
|
2013-11-01 20:11:03 +01:00
|
|
|
|
2014-12-10 21:18:45 +01:00
|
|
|
/*
|
|
|
|
* This file is part of the TYPO3 CMS project.
|
2013-11-01 20:11:03 +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 20:11:03 +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 20:11:03 +01:00
|
|
|
*
|
2014-12-10 21:18:45 +01:00
|
|
|
* The TYPO3 project - inspiring people to share!
|
|
|
|
*/
|
2013-11-01 20:11:03 +01:00
|
|
|
|
2015-06-14 11:31:29 +02:00
|
|
|
use TYPO3\CMS\Extbase\Persistence\ObjectStorage;
|
|
|
|
|
2013-11-01 20:11:03 +01:00
|
|
|
/**
|
|
|
|
* Test case.
|
|
|
|
*
|
|
|
|
* @author Oliver Klee <typo3-coding@oliverklee.de>
|
|
|
|
*/
|
2017-09-07 16:22:21 +02:00
|
|
|
class TeaBeverageTest extends \Nimut\TestingFramework\TestCase\UnitTestCase
|
2016-05-07 21:43:25 +02:00
|
|
|
{
|
2016-07-16 21:39:04 +02:00
|
|
|
/**
|
|
|
|
* @var bool
|
|
|
|
*/
|
|
|
|
protected $backupGlobals = false;
|
|
|
|
|
2016-05-07 21:43:25 +02:00
|
|
|
/**
|
|
|
|
* @var \OliverKlee\Tea\Domain\Model\TeaBeverage
|
|
|
|
*/
|
|
|
|
protected $subject = null;
|
|
|
|
|
|
|
|
protected function setUp()
|
|
|
|
{
|
|
|
|
$this->subject = new \OliverKlee\Tea\Domain\Model\TeaBeverage();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function getSizeInitiallyReturnsZero()
|
|
|
|
{
|
|
|
|
self::assertSame(
|
|
|
|
0.0,
|
|
|
|
$this->subject->getSize()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function setSizeSetsSize()
|
|
|
|
{
|
2016-05-08 14:57:07 +02:00
|
|
|
$size = 1234.56;
|
2016-05-07 21:43:25 +02:00
|
|
|
|
2016-05-08 14:57:07 +02:00
|
|
|
$this->subject->setSize($size);
|
|
|
|
|
|
|
|
self::assertSame($size, $this->subject->getSize());
|
2016-05-07 21:43:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function getTypeInitiallyReturnsNull()
|
|
|
|
{
|
|
|
|
self::assertNull(
|
|
|
|
$this->subject->getType()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function setTypeSetsType()
|
|
|
|
{
|
|
|
|
$type = new \OliverKlee\Tea\Domain\Model\TeaType();
|
|
|
|
$this->subject->setType($type);
|
|
|
|
|
|
|
|
self::assertSame(
|
|
|
|
$type,
|
|
|
|
$this->subject->getType()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function getAdditionsInitiallyReturnsEmptyStorage()
|
|
|
|
{
|
|
|
|
self::assertEquals(
|
|
|
|
new ObjectStorage(),
|
|
|
|
$this->subject->getAdditions()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function setAdditionsSetsAdditions()
|
|
|
|
{
|
|
|
|
$items = new ObjectStorage();
|
|
|
|
$this->subject->setAdditions($items);
|
|
|
|
|
|
|
|
self::assertSame(
|
|
|
|
$items,
|
|
|
|
$this->subject->getAdditions()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function addAdditionAddsAddition()
|
|
|
|
{
|
|
|
|
$items = new ObjectStorage();
|
|
|
|
$this->subject->setAdditions($items);
|
|
|
|
|
|
|
|
$newItem = new \OliverKlee\Tea\Domain\Model\Addition();
|
|
|
|
$this->subject->addAddition($newItem);
|
|
|
|
|
|
|
|
self::assertTrue(
|
|
|
|
$this->subject->getAdditions()->contains($newItem)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function removeAdditionRemovesAddition()
|
|
|
|
{
|
|
|
|
$items = new ObjectStorage();
|
|
|
|
$this->subject->setAdditions($items);
|
|
|
|
|
|
|
|
$newItem = new \OliverKlee\Tea\Domain\Model\Addition();
|
|
|
|
$this->subject->addAddition($newItem);
|
|
|
|
$this->subject->removeAddition($newItem);
|
|
|
|
|
|
|
|
self::assertFalse(
|
|
|
|
$this->subject->getAdditions()->contains($newItem)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function getTestimonialsInitiallyReturnsEmptyStorage()
|
|
|
|
{
|
|
|
|
self::assertEquals(
|
|
|
|
new ObjectStorage(),
|
|
|
|
$this->subject->getTestimonials()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function setTestimonialsSetsTestimonials()
|
|
|
|
{
|
|
|
|
$items = new ObjectStorage();
|
|
|
|
$this->subject->setTestimonials($items);
|
|
|
|
|
|
|
|
self::assertSame(
|
|
|
|
$items,
|
|
|
|
$this->subject->getTestimonials()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function addTestimonialAddsTestimonial()
|
|
|
|
{
|
|
|
|
$items = new ObjectStorage();
|
|
|
|
$this->subject->setTestimonials($items);
|
|
|
|
|
|
|
|
$newItem = new \OliverKlee\Tea\Domain\Model\Testimonial();
|
|
|
|
$this->subject->addTestimonial($newItem);
|
|
|
|
|
|
|
|
self::assertTrue(
|
|
|
|
$this->subject->getTestimonials()->contains($newItem)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function removeTestimonialRemovesTestimonial()
|
|
|
|
{
|
|
|
|
$items = new ObjectStorage();
|
|
|
|
$this->subject->setTestimonials($items);
|
|
|
|
|
|
|
|
$newItem = new \OliverKlee\Tea\Domain\Model\Testimonial();
|
|
|
|
$this->subject->addTestimonial($newItem);
|
|
|
|
$this->subject->removeTestimonial($newItem);
|
|
|
|
|
|
|
|
self::assertFalse(
|
|
|
|
$this->subject->getTestimonials()->contains($newItem)
|
|
|
|
);
|
|
|
|
}
|
2014-01-02 00:01:54 +01:00
|
|
|
}
|