예제 #1
0
 public function testGetAttributeMetadata()
 {
     $this->attributeMetadataDataProvider->expects($this->any())->method('getAttribute')->will($this->returnValue($this->attributeEntityMock));
     $this->attributeMetadataConverter->expects($this->any())->method('createMetadataAttribute')->will($this->returnValue($this->attributeMetadataMock));
     $attributeMetadata = $this->service->getAttributeMetadata('attributeId');
     $this->assertMetadataAttributes($attributeMetadata);
 }