Package org.sonatype.nexus.component.source

Examples of org.sonatype.nexus.component.source.ComponentSourceRegistry


  @Before
  public void initMocks() {
    store = mock(RawBinaryStore.class);
    source = mock(ComponentSource.class);
    final ComponentSourceRegistry registry = mock(ComponentSourceRegistry.class);
    when(registry.getSource(SOURCE_NAME)).thenReturn(source);

    handler = new TestableRawProxyHandler(store, SOURCE_NAME, registry);
  }
View Full Code Here

TOP

Related Classes of org.sonatype.nexus.component.source.ComponentSourceRegistry

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.