Exemplo n.º 1
0
 public function testTestExistingFile()
 {
     $path = $this->tmpDir . '/foo.txt';
     $this->assertTrue($this->sftp->exists($path));
     $list = $this->sftp->listDirectory($this->tmpDir);
     $this->assertContains($path, $list['files']);
 }