‪TYPO3CMS  9.5
CategoryTest.php
Go to the documentation of this file.
1 <?php
3 
4 /*
5  * This file is part of the TYPO3 CMS project.
6  *
7  * It is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU General Public License, either version 2
9  * of the License, or any later version.
10  *
11  * For the full copyright and license information, please read the
12  * LICENSE.txt file that was distributed with this source code.
13  *
14  * The TYPO3 project - inspiring people to share!
15  */
16 
17 use TYPO3\TestingFramework\Core\Unit\UnitTestCase;
18 
22 class ‪CategoryTest extends UnitTestCase
23 {
27  protected ‪$fixture;
28 
29  protected function ‪setUp()
30  {
31  $this->fixture = new \TYPO3\CMS\Extbase\Domain\Model\Category();
32  }
33 
38  {
39  $this->assertSame('', $this->fixture->getTitle());
40  }
41 
45  public function ‪setTitleSetsTitle()
46  {
47  $this->fixture->setTitle('foo bar');
48  $this->assertSame('foo bar', $this->fixture->getTitle());
49  }
50 
55  {
56  $this->assertSame('', $this->fixture->getDescription());
57  }
58 
62  public function ‪setDescriptionSetsDescription()
63  {
64  $this->fixture->setDescription('foo bar');
65  $this->assertSame('foo bar', $this->fixture->getDescription());
66  }
67 
71  public function ‪getParentInitiallyReturnsNull()
72  {
73  $this->assertNull($this->fixture->getParent());
74  }
75 
79  public function ‪setParentSetsParent()
80  {
81  $parent = new \TYPO3\CMS\Extbase\Domain\Model\Category();
82  $this->fixture->setParent($parent);
83  $this->assertSame($parent, $this->fixture->getParent());
84  }
85 }
‪TYPO3\CMS\Extbase\Tests\Unit\Domain\Model\CategoryTest\getParentInitiallyReturnsNull
‪getParentInitiallyReturnsNull()
Definition: CategoryTest.php:70
‪TYPO3\CMS\Extbase\Tests\Unit\Domain\Model\CategoryTest\getTitleInitiallyReturnsEmptyString
‪getTitleInitiallyReturnsEmptyString()
Definition: CategoryTest.php:36
‪TYPO3\CMS\Extbase\Tests\Unit\Domain\Model\CategoryTest\getDescriptionInitiallyReturnsEmptyString
‪getDescriptionInitiallyReturnsEmptyString()
Definition: CategoryTest.php:53
‪TYPO3\CMS\Extbase\Tests\Unit\Domain\Model\CategoryTest\$fixture
‪TYPO3 CMS Extbase Domain Model Category $fixture
Definition: CategoryTest.php:26
‪TYPO3\CMS\Extbase\Tests\Unit\Domain\Model\CategoryTest
Definition: CategoryTest.php:23
‪TYPO3\CMS\Extbase\Tests\Unit\Domain\Model
Definition: BackendUserGroupTest.php:2
‪TYPO3\CMS\Extbase\Tests\Unit\Domain\Model\CategoryTest\setUp
‪setUp()
Definition: CategoryTest.php:28
‪TYPO3\CMS\Extbase\Tests\Unit\Domain\Model\CategoryTest\setDescriptionSetsDescription
‪setDescriptionSetsDescription()
Definition: CategoryTest.php:61
‪TYPO3\CMS\Extbase\Tests\Unit\Domain\Model\CategoryTest\setTitleSetsTitle
‪setTitleSetsTitle()
Definition: CategoryTest.php:44
‪TYPO3\CMS\Extbase\Tests\Unit\Domain\Model\CategoryTest\setParentSetsParent
‪setParentSetsParent()
Definition: CategoryTest.php:78