1 | <?php |
||
8 | class UserTextTest extends \PHPUnit_Framework_TestCase |
||
9 | { |
||
10 | const ENTITY_KEY = 'template'; |
||
11 | const ENTITY_SINGLUAR = 'Template'; |
||
12 | const ENTITY_PLURAL = 'Templates'; |
||
13 | |||
14 | /** @var UserText */ |
||
15 | protected $sut; |
||
16 | |||
17 | protected function setUp() |
||
36 | |||
37 | /** |
||
38 | * @covers DmCommon\View\Helper\UserText |
||
39 | */ |
||
40 | public function testGetTitleIndex() |
||
46 | |||
47 | /** |
||
48 | * @covers DmCommon\View\Helper\UserText |
||
49 | */ |
||
50 | public function testGetTitleNonIndex() |
||
56 | |||
57 | /** |
||
58 | * @covers DmCommon\View\Helper\UserText |
||
59 | */ |
||
60 | public function testGetMessage() |
||
66 | } |
||
67 |