Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
17 | protected function setUp() |
||
18 | { |
||
19 | $this->mock = $this->getMockBuilder( '\TYPO3\Fluid\View\StandaloneView' ) |
||
20 | ->setMethods( array( 'assign', 'assignMultiple', 'render', 'setTemplatePathAndFilename' ) ) |
||
21 | ->disableOriginalConstructor() |
||
22 | ->getMock(); |
||
23 | |||
24 | $this->object = new \Aimeos\MW\View\Engine\Flow( $this->mock ); |
||
25 | } |
||
26 | |||
48 |