Package de.berndsteindorff.junittca.model

Examples of de.berndsteindorff.junittca.model.Project


   * Test setting classpath with wrong directories.
   *
   */
  @Test
  public void setClassPathsWrongDirectories() throws Exception {
    Project project = new Project("bla");
    logger.info("setClassPathsWrongDirectories");

    try {
      project.setClasspath("");
      fail("Es konnte doch ein Klassenpfad gesetzt werden:"
          + project.getClasspath());
    } catch (Exception e) {
      assertEquals(
          "Ein leerer Klassenpfad ist ungültig.\nBitte geben Sie ein existierendes Verzeichnis ein.",
          e.getMessage());
    }

    try {
      project.setClasspath("/home/bla");
      fail("Es konnte doch ein Klassenpfad gesetzt werden:"
          + project.getClasspath());
    } catch (Exception e) {
      assertEquals(
          "Der Klassenpfad /home/bla ist ungültig.\nBitte geben Sie ein existierendes Verzeichnis ein.",
          e.getMessage());
    }
View Full Code Here

TOP

Related Classes of de.berndsteindorff.junittca.model.Project

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.