public function testDeletesAttributeById()
 {
     $attributeId = 1091;
     $this->page->_attributeId = $attributeId;
     $this->attributeRepository->expects($this->once())->method('DeleteById')->with($this->equalTo($attributeId));
     $this->presenter->DeleteAttribute();
 }
예제 #2
0
 public function ProcessDataRequest($dataRequest)
 {
     $this->presenter->HandleDataRequest($dataRequest);
 }