| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | public function testInvokingAdminUserHelperShouldReturnItSelf() |
||
| 10 | { |
||
| 11 | $videoService = $this->getMockBuilder('Article\Service\VideoService') |
||
| 12 | ->disableOriginalConstructor() |
||
| 13 | ->getMockForAbstractClass(); |
||
| 14 | $videoHelper = new \Article\View\Helper\VideoHelper($videoService); |
||
| 15 | static::assertInstanceOf(\Article\View\Helper\VideoHelper::class, $videoHelper()); |
||
| 16 | } |
||
| 17 | |||
| 31 |