Ejemplo n.º 1
0
 public function testGetAttributeById()
 {
     $this->productResource->expects($this->any())->method('loadAllAttributes')->will($this->returnValue($this->productResource));
     $this->productResource->expects($this->any())->method('getSortedAttributes')->will($this->returnValue([$this->attribute]));
     $this->attribute->setId(1);
     $this->assertEquals($this->attribute, $this->model->getAttributeById(1, $this->product));
     $this->assertNull($this->model->getAttributeById(0, $this->product));
 }