Package org.apache.maven.plugin.dependency.testUtils.stubs

Examples of org.apache.maven.plugin.dependency.testUtils.stubs.StubSourcesFileMarkerHandler


    }

    public void testMarkerFileException()
    {
        // this stub wraps the file with an object to throw exceptions
        StubSourcesFileMarkerHandler handler = new StubSourcesFileMarkerHandler( artifacts.get( 0 ),
                                                                                 this.outputFolder, true );
        try
        {
            handler.setMarker();
            fail( "Expected an Exception here" );
        }
        catch ( MojoExecutionException e )
        {
        }
View Full Code Here

TOP

Related Classes of org.apache.maven.plugin.dependency.testUtils.stubs.StubSourcesFileMarkerHandler

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.