public function testDownload()
 {
     $path = DIRECTORY_SEPARATOR . ltrim(uniqid(), DIRECTORY_SEPARATOR);
     $projects = ['Oro'];
     $package = 'en';
     $this->client->expects($this->once())->method('createRequest')->will($this->returnValue($this->request));
     $this->request->expects($this->once())->method('send')->will($this->returnValue($this->response));
     $this->request->expects($this->any())->method('getQuery')->will($this->returnValue($this->query));
     $this->response->expects($this->once())->method('getStatusCode')->will($this->returnValue(200));
     $result = $this->adapter->download($path, $projects, $package);
     $this->assertTrue($result);
 }