Package org.gradle.api.internal.tasks.testing.junit.report

Examples of org.gradle.api.internal.tasks.testing.junit.report.TestReporter


    @org.junit.Test
    public void generatesReport() {
        configureTask();
        expectTestsExecuted();

        final TestReporter testReporter = context.mock(TestReporter.class);
        test.setTestReporter(testReporter);
        context.checking(new Expectations() {{
            one(testReporter).generateReport(with(any(TestResultsProvider.class)), with(equal(reportDir)));
        }});
View Full Code Here

TOP

Related Classes of org.gradle.api.internal.tasks.testing.junit.report.TestReporter

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.