/**
  * @throws ParallelOperationException
  */
 public function testUploadFiles()
 {
     $file = new File('test.txt');
     $file->setLocalName($this->testFileName);
     $file->setContentType();
     $file->setSize();
     $this->service->uploadFiles($this->container, [$file], false);
     (new Client())->get($this->containerUrl . '/' . $file->getServerName());
 }