Examples of scheduleShutdown()


Examples of org.apache.maven.surefire.junitcore.pc.ParallelComputer.scheduleShutdown()

        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
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.