Examples of YumRepository


Examples of org.sonatype.nexus.yum.YumRepository

  @Test
  public void shouldCacheRepository()
      throws Exception
  {
    final YumRepository repo1 = yum.getYumRepository(VERSION_1_0);
    final YumRepository repo2 = yum.getYumRepository(VERSION_1_0);

    Assert.assertEquals(repo1, repo2);
  }
View Full Code Here

Examples of org.sonatype.nexus.yum.YumRepository

  @Test
  public void shouldRecreateRepository()
      throws Exception
  {
    final YumRepository repo1 = yum.getYumRepository(VERSION_1_0);

    yum.markDirty(VERSION_1_0);

    YumRepository repo2 = yum.getYumRepository(VERSION_1_0);

    assertNotSame(repo1, repo2);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.