| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 34 | public function testDecorateFactoryClientGlobal() |
||
| 35 | { |
||
| 36 | $config = $this->context->getConfig(); |
||
| 37 | $config->set( 'client/html/catalog/filter/decorators/global', array( 'Example' ) ); |
||
| 38 | |||
| 39 | $object = \Aimeos\Client\Html\Catalog\Filter\Factory::create( $this->context ); |
||
| 40 | |||
| 41 | $this->assertInstanceOf( '\\Aimeos\\Client\\Html\\Common\\Decorator\\Iface', $object ); |
||
| 42 | } |
||
| 55 |