Conditions | 2 |
Paths | 2 |
Total Lines | 7 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
43 | public function testGetSearchAttributes() |
||
44 | { |
||
45 | $attributes = $this->object->getSearchAttributes(); |
||
46 | $this->assertGreaterThan( 0, count( $attributes ) ); |
||
47 | |||
48 | foreach( $attributes as $attribute ) { |
||
49 | $this->assertInstanceOf( '\\Aimeos\\MW\\Criteria\\Attribute\\Iface', $attribute ); |
||
50 | } |
||
60 |