get() public method

public get ( string $name, boolean | integer | string | array $default = null ) : boolean | integer | string | array
$name string
$default boolean | integer | string | array
return boolean | integer | string | array
 public function testDownloadDirectory()
 {
     $this->_server->expects($this->once())->method('download')->with($this->_env->get("local_path"), $this->_env->get("remote_path"));
     download('{{local_path}}', '{{remote_path}}');
 }