Package org.apache.maven.surefire.junitcore.pc

Examples of org.apache.maven.surefire.junitcore.pc.ParallelComputer


    }

    private static ComputerWrapper createParallelComputer( JUnitCoreParameters parameters )
            throws TestSetFailedException
    {
        ParallelComputer pc = ParallelComputerFactory.createParallelComputer( parameters );

        int timeout = parameters.getParallelTestsTimeoutInSeconds();

        int timeoutForced = parameters.getParallelTestsTimeoutForcedInSeconds();

        Future<Collection<Description>> testsBeforeShutdown =
                timeout > 0 ? pc.scheduleShutdown( timeout, TimeUnit.SECONDS ) : null;

        Future<Collection<Description>> testsBeforeForcedShutdown =
                timeoutForced > 0 ? pc.scheduleForcedShutdown( timeoutForced, TimeUnit.SECONDS ) : null;

        return new ComputerWrapper( pc, timeout, testsBeforeShutdown, timeoutForced, testsBeforeForcedShutdown );
    }
View Full Code Here

TOP

Related Classes of org.apache.maven.surefire.junitcore.pc.ParallelComputer

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.