コード例 #1
0
 public function testExecuteWhenCustomerAddressBlockNotExist()
 {
     $this->viewMock->expects($this->once())->method('loadLayout')->willReturnSelf();
     $this->viewMock->expects($this->any())->method('getLayout')->willReturn($this->layoutMock);
     $this->layoutMock->expects($this->once())->method('getBlock')->with('customer_address_edit');
     $this->urlMock->expects($this->never())->method('getUrl');
     $this->viewMock->expects($this->once())->method('renderLayout');
     $this->controller->execute();
 }