Package org.apache.maven.plugin.surefire.util

Examples of org.apache.maven.plugin.surefire.util.Relocator.relocate()


    public void testFoo()
    {
        Relocator relocator = new Relocator( "shadefire" );
        String cn = "org.apache.maven.surefire.report.ForkingConsoleReporter";
        assertEquals( "org.apache.maven.surefire.shadefire.report.ForkingConsoleReporter", relocator.relocate( cn ) );
    }

    public void testRelocation()
    {
        Relocator relocator = new Relocator( "shadefire" );
View Full Code Here


    public void testRelocation()
    {
        Relocator relocator = new Relocator( "shadefire" );
        String org1 = "org.apache.maven.surefire.fooz.Baz";
        assertEquals( "org.apache.maven.surefire.shadefire.fooz.Baz", relocator.relocate( org1 ) );
    }
}
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.