1 | <?php |
||
16 | class SeoGeneratorProviderTest extends TestCase |
||
17 | { |
||
18 | /** |
||
19 | * @var SeoGeneratorProvider |
||
20 | */ |
||
21 | protected $provider; |
||
22 | |||
23 | protected function setUp() |
||
32 | |||
33 | public function testGetGenerator() |
||
40 | |||
41 | /** |
||
42 | * @expectedException \InvalidArgumentException |
||
43 | * @expectedExceptionMessage The SEO generator with alias "undefined" is not defined. |
||
44 | */ |
||
45 | public function testGetUndefinedGenerator() |
||
49 | |||
50 | public function testGetAllGenerators() |
||
57 | |||
58 | /** |
||
59 | * @param |
||
60 | */ |
||
61 | public function testHasGenerator() |
||
70 | } |
||
71 |