Ejemplo n.º 1
0
 public function testIsAlive()
 {
     // Configure the stub.
     $stub = $this->getMock('Zikula\\Component\\FileSystem\\Facade\\FtpFacade');
     $stub->expects($this->any())->method('systype')->will($this->returnValue(true));
     $this->ftp->setDriver($stub);
     $this->assertEquals(true, $this->ftp->isAlive());
     // Configure the stub.
     $stub = $this->getMock('Zikula\\Component\\FileSystem\\Facade\\FtpFacade');
     $stub->expects($this->any())->method('systype')->will($this->returnValue(false));
     $this->ftp->setDriver($stub);
     $this->assertEquals(false, $this->ftp->isAlive());
 }