Package de.idos.updates.store

Examples of de.idos.updates.store.NullReport


    assertThat(elementsToInstall.size(), is(2));
  }

  @Test
  public void extendsBaseUrlWhenDownloadingElements() throws Exception {
    Installation installation = FilesystemInstallation.create(folder.getRoot(), new NullReport());
    HttpInstaller installer = createInstaller(installation);
    installer.installElement("fileToUpdate", new NumericVersion(5, 0, 4));
    assertThat(new File(folder.getRoot(), "fileToUpdate").exists(), is(true));
  }
View Full Code Here


    fileServer.stop();
  }

  private HttpInstaller createInstaller(Installation installation) throws MalformedURLException {
    URL baseUrl = new URL("http://localhost:8080/updates/");
    NullReport report = new NullReport();
    return new HttpInstaller(report, baseUrl, installation);
  }
View Full Code Here

TOP

Related Classes of de.idos.updates.store.NullReport

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.