1 | <?php |
||
7 | class MockFactoryTest extends \PHPUnit_Framework_TestCase |
||
8 | { |
||
9 | /** @var MockFactory */ |
||
10 | protected $sut; |
||
11 | |||
12 | public function setUp() |
||
16 | |||
17 | /** |
||
18 | * @covers DmTest\Controller\Plugin\MockFactory |
||
19 | */ |
||
20 | public function testPluginMockFactory() |
||
24 | |||
25 | /** |
||
26 | * @covers DmTest\Controller\Plugin\MockFactory |
||
27 | */ |
||
28 | public function testFlashMessengerPluginMockFactory() |
||
32 | |||
33 | /** |
||
34 | * @covers DmTest\Controller\Plugin\MockFactory |
||
35 | */ |
||
36 | public function testResponseMockFactory() |
||
40 | |||
41 | /** |
||
42 | * @covers DmTest\Controller\Plugin\MockFactory |
||
43 | */ |
||
44 | public function testRedirectPluginMockFactory() |
||
48 | |||
49 | /** |
||
50 | * @covers DmTest\Controller\Plugin\MockFactory |
||
51 | */ |
||
52 | public function testRequestPluginMockFactory() |
||
56 | |||
57 | /** |
||
58 | * @covers DmTest\Controller\Plugin\MockFactory |
||
59 | */ |
||
60 | public function testParamsPluginMockFactory() |
||
64 | |||
65 | /** |
||
66 | * @covers DmTest\Controller\Plugin\MockFactory |
||
67 | */ |
||
68 | public function testUrlMockFactory() |
||
72 | } |
||
73 |