Conditions | 2 |
Paths | 2 |
Total Lines | 13 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
17 | protected function setUp() |
||
18 | { |
||
19 | if( !class_exists( '\Illuminate\View\Factory' ) ) { |
||
20 | $this->markTestSkipped( '\Illuminate\View\Factory is not available' ); |
||
21 | } |
||
22 | |||
23 | $this->mock = $this->getMockBuilder( '\Illuminate\View\Factory' ) |
||
24 | ->setMethods( array( 'file' ) ) |
||
25 | ->disableOriginalConstructor() |
||
26 | ->getMock(); |
||
27 | |||
28 | $this->object = new \Aimeos\MW\View\Engine\Blade( $this->mock ); |
||
29 | } |
||
30 | |||
55 |