TYPO3 CMS  TYPO3_7-6
IconTest.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 
20 
25 {
29  protected $subject = null;
30 
34  protected $iconIdentifier = 'actions-document-close';
35 
39  protected $overlayIdentifier = 'overlay-readonly';
40 
46  protected function setUp()
47  {
48  $iconFactory = new IconFactory();
49  $this->subject = $iconFactory->getIcon($this->iconIdentifier, Icon::SIZE_SMALL, $this->overlayIdentifier, IconState::cast(IconState::STATE_DISABLED));
50  }
51 
56  {
57  $this->assertEquals($this->subject->render(), (string)$this->subject);
58  }
59 
64  {
65  $this->assertEquals($this->iconIdentifier, $this->subject->getIdentifier());
66  }
67 
72  {
73  $this->assertEquals($this->overlayIdentifier, $this->subject->getOverlayIcon()->getIdentifier());
74  }
75 
80  {
81  $this->assertEquals(Icon::SIZE_SMALL, $this->subject->getSize());
82  }
83 
88  {
89  $this->assertTrue($this->subject->getState()->equals(IconState::STATE_DISABLED));
90  }
91 }