Package org.gradle.api.internal.tasks.testing.detection

Examples of org.gradle.api.internal.tasks.testing.detection.DefaultTestExecuter


    private ListenerBroadcast<TestListener> testListenerBroadcaster;

    public Test() {
        testListenerBroadcaster = getServices().get(ListenerManager.class).createAnonymousBroadcaster(
                TestListener.class);
        this.testExecuter = new DefaultTestExecuter(getServices().getFactory(WorkerProcessBuilder.class), getServices().get(
                ActorFactory.class));
        options = new DefaultJavaForkOptions(getServices().get(FileResolver.class));
        options.setEnableAssertions(true);
    }
View Full Code Here


        TestResultProcessor resultProcessor = new TestListenerAdapter(
                getTestListenerBroadcaster().getSource(), testOutputListenerBroadcaster.getSource());

        if (testExecuter == null) {
            testExecuter = new DefaultTestExecuter(getProcessBuilderFactory(), getActorFactory());
        }

        try {
            testExecuter.execute(this, resultProcessor);
        } finally {
View Full Code Here

TOP

Related Classes of org.gradle.api.internal.tasks.testing.detection.DefaultTestExecuter

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.