Conditions | 2 |
Paths | 2 |
Total Lines | 8 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | protected function setUp() : void |
||
18 | { |
||
19 | if( !interface_exists( 'eZ\Publish\API\Repository\UserService' ) ) { |
||
20 | $this->markTestSkipped( 'Install ezsystems/ezpublish-api first' ); |
||
21 | } |
||
22 | |||
23 | $this->mock = $this->getMockBuilder( 'eZ\Publish\API\Repository\UserService' )->getMock(); |
||
|
|||
24 | $this->object = new \Aimeos\MShop\Context\Item\Ezpublish(); |
||
25 | } |
||
49 |