Ejemplo n.º 1
0
 public function testSetLinkStatusEmptyOrder()
 {
     $this->observerMock->expects($this->once())->method('getEvent')->will($this->returnValue($this->eventMock));
     $this->eventMock->expects($this->once())->method('getOrder')->willReturn($this->orderMock);
     $this->orderMock->expects($this->once())->method('getId')->willReturn(null);
     $result = $this->observer->setLinkStatus($this->observerMock);
     $this->assertInstanceOf('\\Magento\\Downloadable\\Model\\Observer', $result);
 }