| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | public function testGet() |
||
| 15 | { |
||
| 16 | $manifest = dirname( __DIR__, 3 ) . '/manifest.jsb2'; |
||
| 17 | |||
| 18 | $this->assertFalse( empty( \Aimeos\Admin\JQAdm\Bundle::get( [$manifest], 'index-css' ) ) ); |
||
| 19 | $this->assertFalse( empty( \Aimeos\Admin\JQAdm\Bundle::get( [$manifest], 'index-ltr-css' ) ) ); |
||
| 20 | $this->assertFalse( empty( \Aimeos\Admin\JQAdm\Bundle::get( [$manifest], 'index-rtl-css' ) ) ); |
||
| 21 | $this->assertFalse( empty( \Aimeos\Admin\JQAdm\Bundle::get( [$manifest], 'index-js' ) ) ); |
||
| 22 | $this->assertFalse( empty( \Aimeos\Admin\JQAdm\Bundle::get( [$manifest], 'vendor-js' ) ) ); |
||
| 23 | } |
||
| 25 |