mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 08:36:12 +01:00
199 lines
4.1 KiB
PHP
199 lines
4.1 KiB
PHP
<?php
|
|
namespace OliverKlee\Tea\Tests;
|
|
|
|
/*
|
|
* This file is part of the TYPO3 CMS project.
|
|
*
|
|
* 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.
|
|
*
|
|
* For the full copyright and license information, please read the
|
|
* LICENSE.txt file that was distributed with this source code.
|
|
*
|
|
* The TYPO3 project - inspiring people to share!
|
|
*/
|
|
|
|
/**
|
|
* Test case.
|
|
*
|
|
* @author Oliver Klee <typo3-coding@oliverklee.de>
|
|
*/
|
|
class TeaBeverageTest extends \TYPO3\CMS\Core\Tests\UnitTestCase {
|
|
/**
|
|
* @var \OliverKlee\Tea\Domain\Model\TeaBeverage
|
|
*/
|
|
protected $subject = NULL;
|
|
|
|
public function setUp() {
|
|
$this->subject = new \OliverKlee\Tea\Domain\Model\TeaBeverage();
|
|
}
|
|
|
|
public function tearDown() {
|
|
unset($this->subject);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
* @return void
|
|
*/
|
|
public function getSizeInitiallyReturnsZero() {
|
|
$this->assertSame(
|
|
0.0,
|
|
$this->subject->getSize()
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
* @return void
|
|
*/
|
|
public function setSizeSetsSize() {
|
|
$this->subject->setSize(1234.56);
|
|
|
|
$this->assertSame(
|
|
1234.56,
|
|
$this->subject->getSize()
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
* @return void
|
|
*/
|
|
public function getTypeInitiallyReturnsNull() {
|
|
$this->assertNull(
|
|
$this->subject->getType()
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
* @return void
|
|
*/
|
|
public function setTypeSetsType() {
|
|
$type = new \OliverKlee\Tea\Domain\Model\TeaType();
|
|
$this->subject->setType($type);
|
|
|
|
$this->assertSame(
|
|
$type,
|
|
$this->subject->getType()
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
* @return void
|
|
*/
|
|
public function getAdditionsInitiallyReturnsEmptyStorage() {
|
|
$this->assertEquals(
|
|
new \TYPO3\CMS\Extbase\Persistence\ObjectStorage(),
|
|
$this->subject->getAdditions()
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
* @return void
|
|
*/
|
|
public function setAdditionsSetsAdditions() {
|
|
$items = new \TYPO3\CMS\Extbase\Persistence\ObjectStorage();
|
|
$this->subject->setAdditions($items);
|
|
|
|
$this->assertSame(
|
|
$items,
|
|
$this->subject->getAdditions()
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
* @return void
|
|
*/
|
|
public function addAdditionAddsAddition() {
|
|
$items = new \TYPO3\CMS\Extbase\Persistence\ObjectStorage();
|
|
$this->subject->setAdditions($items);
|
|
|
|
$newItem = new \OliverKlee\Tea\Domain\Model\Addition();
|
|
$this->subject->addAddition($newItem);
|
|
|
|
$this->assertTrue(
|
|
$this->subject->getAdditions()->contains($newItem)
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
* @return void
|
|
*/
|
|
public function removeAdditionRemovesAddition() {
|
|
$items = new \TYPO3\CMS\Extbase\Persistence\ObjectStorage();
|
|
$this->subject->setAdditions($items);
|
|
|
|
$newItem = new \OliverKlee\Tea\Domain\Model\Addition();
|
|
$this->subject->addAddition($newItem);
|
|
$this->subject->removeAddition($newItem);
|
|
|
|
$this->assertFalse(
|
|
$this->subject->getAdditions()->contains($newItem)
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
* @return void
|
|
*/
|
|
public function getTestimonialsInitiallyReturnsEmptyStorage() {
|
|
$this->assertEquals(
|
|
new \TYPO3\CMS\Extbase\Persistence\ObjectStorage(),
|
|
$this->subject->getTestimonials()
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
* @return void
|
|
*/
|
|
public function setTestimonialsSetsTestimonials() {
|
|
$items = new \TYPO3\CMS\Extbase\Persistence\ObjectStorage();
|
|
$this->subject->setTestimonials($items);
|
|
|
|
$this->assertSame(
|
|
$items,
|
|
$this->subject->getTestimonials()
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
* @return void
|
|
*/
|
|
public function addTestimonialAddsTestimonial() {
|
|
$items = new \TYPO3\CMS\Extbase\Persistence\ObjectStorage();
|
|
$this->subject->setTestimonials($items);
|
|
|
|
$newItem = new \OliverKlee\Tea\Domain\Model\Testimonial();
|
|
$this->subject->addTestimonial($newItem);
|
|
|
|
$this->assertTrue(
|
|
$this->subject->getTestimonials()->contains($newItem)
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
* @return void
|
|
*/
|
|
public function removeTestimonialRemovesTestimonial() {
|
|
$items = new \TYPO3\CMS\Extbase\Persistence\ObjectStorage();
|
|
$this->subject->setTestimonials($items);
|
|
|
|
$newItem = new \OliverKlee\Tea\Domain\Model\Testimonial();
|
|
$this->subject->addTestimonial($newItem);
|
|
$this->subject->removeTestimonial($newItem);
|
|
|
|
$this->assertFalse(
|
|
$this->subject->getTestimonials()->contains($newItem)
|
|
);
|
|
}
|
|
}
|