| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | public function testGetSubManager() |
||
| 15 | { |
||
| 16 | $class = \Aimeos\MShop\Common\Manager\Iface::class; |
||
| 17 | $object = new \Aimeos\MShop\Index\Manager\PgSQL( \TestHelperMShop::getContext() ); |
||
| 18 | |||
| 19 | $this->assertInstanceOf( $class, $object->getSubManager( 'attribute' ) ); |
||
| 20 | $this->assertInstanceOf( $class, $object->getSubManager( 'catalog' ) ); |
||
| 21 | $this->assertInstanceOf( $class, $object->getSubManager( 'price' ) ); |
||
| 22 | $this->assertInstanceOf( $class, $object->getSubManager( 'supplier' ) ); |
||
| 23 | $this->assertInstanceOf( $class, $object->getSubManager( 'text' ) ); |
||
| 24 | } |
||
| 26 |