2013-11-01 20:11:03 +01:00
|
|
|
<?php
|
|
|
|
namespace OliverKlee\Tea\Tests;
|
|
|
|
|
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
|
|
|
|
|
|
|
/**
|
|
|
|
* Test case.
|
|
|
|
*
|
|
|
|
* @author Oliver Klee <typo3-coding@oliverklee.de>
|
|
|
|
*/
|
2014-12-11 14:14:18 +01:00
|
|
|
class TeaBeverageRepositoryTest extends \TYPO3\CMS\Core\Tests\UnitTestCase {
|
2013-11-01 20:11:03 +01:00
|
|
|
/**
|
|
|
|
* @var \OliverKlee\Tea\Domain\Model\TeaBeverage
|
|
|
|
*/
|
2013-11-11 11:50:25 +01:00
|
|
|
protected $subject;
|
2013-11-01 20:11:03 +01:00
|
|
|
|
|
|
|
/**
|
2014-12-11 14:16:47 +01:00
|
|
|
* @var \TYPO3\CMS\Extbase\Object\ObjectManagerInterface|\PHPUnit_Framework_MockObject_MockObject
|
2013-11-01 20:11:03 +01:00
|
|
|
*/
|
|
|
|
protected $objectManager = NULL;
|
|
|
|
|
2014-12-14 21:20:40 +01:00
|
|
|
protected function setUp() {
|
2013-11-01 20:11:03 +01:00
|
|
|
$this->objectManager = $this->getMock('TYPO3\CMS\Extbase\Object\ObjectManagerInterface');
|
|
|
|
|
2013-11-11 11:50:25 +01:00
|
|
|
$this->subject = new \OliverKlee\Tea\Domain\Repository\TeaBeverageRepository($this->objectManager);
|
2013-11-01 20:11:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
2014-01-02 00:03:12 +01:00
|
|
|
* @return void
|
2013-11-01 20:11:03 +01:00
|
|
|
*/
|
|
|
|
public function canBeInstantiated() {
|
|
|
|
$this->assertNotNull(
|
2013-11-11 11:50:25 +01:00
|
|
|
$this->subject
|
2013-11-01 20:11:03 +01:00
|
|
|
);
|
|
|
|
}
|
2014-01-02 00:03:12 +01:00
|
|
|
}
|