Conditions | 2 |
Paths | 2 |
Total Lines | 7 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
36 | public function testGetSearchAttributes() |
||
37 | { |
||
38 | $attributes = $this->object->getSearchAttributes(); |
||
39 | $this->assertGreaterThan( 0, count( $attributes ) ); |
||
40 | |||
41 | foreach( $attributes as $attribute ) { |
||
42 | $this->assertInstanceOf( \Aimeos\MW\Criteria\Attribute\Iface::class, $attribute ); |
||
43 | } |
||
56 |