Package org.gitective.core

Examples of org.gitective.core.RepositoryService


  /**
   * Test constructor with null repositories
   */
  @Test(expected = IllegalArgumentException.class)
  public void nullStringDirectories() {
    new RepositoryService((String[]) null);
  }
View Full Code Here


  /**
   * Test constructor with empty repositories
   */
  @Test(expected = IllegalArgumentException.class)
  public void emptyStringDirectories() {
    new RepositoryService(new String[0]);
  }
View Full Code Here

  /**
   * Test constructor with null repositories
   */
  @Test(expected = IllegalArgumentException.class)
  public void nullFileDirectories() {
    new RepositoryService((File[]) null);
  }
View Full Code Here

  /**
   * Test constructor with empty repositories
   */
  @Test(expected = IllegalArgumentException.class)
  public void emptyFileDirectories() {
    new RepositoryService(new File[0]);
  }
View Full Code Here

  /**
   * Test constructor with null repositories
   */
  @Test(expected = IllegalArgumentException.class)
  public void nullRepositories() {
    new RepositoryService((Repository[]) null);
  }
View Full Code Here

  /**
   * Test constructor with empty repositories
   */
  @Test(expected = IllegalArgumentException.class)
  public void emptyRepositories() {
    new RepositoryService(new Repository[0]);
  }
View Full Code Here

TOP

Related Classes of org.gitective.core.RepositoryService

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.