Package org.codehaus.mojo.cobertura.configuration

Examples of org.codehaus.mojo.cobertura.configuration.ConfigInstrumentation


            // ensure that instrumentation config is set here, not via maven plugin api @required attribute, as this is
            // not a required object from the pom configuration's point of view.
            if ( instrumentation == null )
            {
                instrumentation = new ConfigInstrumentation();
            }

            /* ensure that the default includes is set */
            if ( instrumentation.getIncludes().isEmpty() )
            {
View Full Code Here


        assertEquals( dataFile, task.getDataFile() );
    }

    public void testConfig()
    {
        ConfigInstrumentation config = new ConfigInstrumentation();

        task.setConfig( config );

        assertEquals( config, task.getConfig() );
    }
View Full Code Here

TOP

Related Classes of org.codehaus.mojo.cobertura.configuration.ConfigInstrumentation

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.