Ejemplo n.º 1
0
 /**
  * @return void
  */
 public function testGetRemoteIp()
 {
     $this->securityConfig->expects($this->once())->method('getRemoteIp')->with(false);
     $this->block->getRemoteIp();
 }
Ejemplo n.º 2
0
 /**
  * @return void
  */
 public function testGetRemoteIp()
 {
     $this->remoteAddressMock->expects($this->once())->method('getRemoteAddress')->with(false);
     $this->block->getRemoteIp();
 }