| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | protected function setUp() |
||
| 16 | { |
||
| 17 | if( !class_exists( '\Zend\Diactoros\ServerRequestFactory' ) ) { |
||
| 18 | $this->markTestSkipped( '\Zend\Diactoros\ServerRequestFactory is not available' ); |
||
| 19 | } |
||
| 20 | |||
| 21 | $view = new \Aimeos\MW\View\Standard(); |
||
| 22 | $server = array( 'REMOTE_ADDR' => '127.0.0.1' ); |
||
| 23 | $this->object = new \Aimeos\MW\View\Helper\Request\Typo3( $view, 123, array(), array(), array(), array(), $server ); |
||
| 24 | } |
||
| 25 | |||
| 50 |