Examples of AetherFacade


Examples of org.reficio.p2.resolver.impl.facade.AetherFacade

    public void facade_sonatypeAetherSystem() {
        // GIVEN
        Object repositorySystem = mock(org.sonatype.aether.RepositorySystem.class);

        // WHEN
        AetherFacade facade = Aether.facade(repositorySystem);

        // THEN
        assertTrue("Wrong facade type", facade instanceof AetherSonatypeFacade);
    }
View Full Code Here

Examples of org.reficio.p2.resolver.impl.facade.AetherFacade

    public void facade_eclipseAetherSystem() {
        // GIVEN
        Object repositorySystem = mock(org.eclipse.aether.RepositorySystem.class);

        // WHEN
        AetherFacade facade = Aether.facade(repositorySystem);

        // THEN
        assertTrue("Wrong facade type", facade instanceof AetherEclipseFacade);
    }
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.