Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
9 | public function testLoad() |
||
10 | { |
||
11 | $imagine = new \Imagine\Gd\Imagine; |
||
12 | |||
13 | $loader = new Background($imagine); |
||
14 | $options = [ |
||
15 | 'width' => 100, |
||
16 | 'height' => 100, |
||
17 | 'image' => 'archos' |
||
18 | ]; |
||
19 | $this->assertInstanceOf('HtImgModule\Imagine\Filter\Background', $loader->load($options)); |
||
20 | |||
21 | } |
||
22 | } |
||
23 |