Ejemplo n.º 1
0
 public function testGetProductAttributes()
 {
     $expectedResult = ['attribute_one', 'attribute_two', 'attribute_three'];
     $this->_catalogConfig->expects($this->once())->method('getProductAttributes')->willReturn(['attribute_one', 'attribute_two']);
     $this->_attributeConfig->expects($this->once())->method('getAttributeNames')->with('wishlist_item')->willReturn(['attribute_three']);
     $this->assertEquals($expectedResult, $this->model->getProductAttributes());
 }