Package org.gradle.api.tasks.testing

Examples of org.gradle.api.tasks.testing.TestResult


        }
    }

    @Override
    protected void completed(TestState state) {
        TestResult result = new DefaultTestResult(state.resultType, state.failure, state.getStartTime(),
                state.getEndTime(), state.testCount, state.successfulCount, state.failedCount);
        TestDescriptorInternal test = state.test;
        if (test.isComposite()) {
            listener.afterSuite(test, result);
        } else {
View Full Code Here

TOP

Related Classes of org.gradle.api.tasks.testing.TestResult

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.