Package org.apache.maven.lifecycle.internal.stub

Examples of org.apache.maven.lifecycle.internal.stub.CompletionServiceStub


{

    public void testBuildProjectSynchronously()
        throws Exception
    {
        final CompletionService<ProjectSegment> service = new CompletionServiceStub( true );
        final ProjectBuildList projectBuildList = runWithCompletionService( service );
        assertEquals( "Expect all tasks to be scheduled", projectBuildList.size(),
                      ( (CompletionServiceStub) service ).size() );
    }
View Full Code Here

TOP

Related Classes of org.apache.maven.lifecycle.internal.stub.CompletionServiceStub

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.