1 | <?php |
||
10 | class TextTest extends TestCase |
||
11 | { |
||
12 | /** |
||
13 | * @var Text |
||
14 | */ |
||
15 | protected $text; |
||
16 | |||
17 | public function setUp() |
||
21 | |||
22 | public function testInstanceOfHandlerInterface() |
||
26 | |||
27 | /** |
||
28 | * @expectedException \eZ\Publish\Core\Base\Exceptions\InvalidArgumentException |
||
29 | * @expectedExceptionMessage Argument '$params[0]' is invalid: Literal text handler requires the text to output. |
||
30 | */ |
||
31 | public function testGettingTagsWithEmptyParams() |
||
35 | |||
36 | public function testGettingTagsWithValidResult() |
||
45 | } |
||
46 |