Пример #1
0
 /**
  * @group Product
  *
  * @return void
  */
 public function testHasAttributeTypeReturnsRightValue()
 {
     $this->assertFalse($this->productFacade->hasAttributeType('AnAttributeType'));
     $this->productFacade->createAttributeType('AnAttributeType', 'input');
     $this->assertTrue($this->productFacade->hasAttributeType('AnAttributeType'));
 }