Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for htmlReport (0.17 sec)

  1. platforms/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/JacocoPluginMultiVersionIntegrationTest.groovy

            executed(':jacocoTestReport')
            htmlReport().exists()
        }
    
        def "coverage data is aggregated from many tests"() {
            javaProjectUnderTest.writeSourceFiles(2000)
    
            expect:
            succeeds 'test', 'jacocoTestReport', '--info'
            htmlReport().totalCoverage() == 100
            htmlReport().numberOfClasses() == 2000
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 23:19:29 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGTestFramework.java

            this.filter = filter;
            this.objects = objects;
            this.testTaskTemporaryDir = testTaskTemporaryDir;
            this.htmlReport = htmlReport;
            this.options = options;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGLoggingOutputCaptureIntegrationTest.groovy

            def classResult = xmlReport.testClass("FooTest")
    
            assertTestClassExecutionResultOutput(classResult)
    
            def htmlReport = new HtmlTestExecutionResult(testDirectory)
            def classReport = htmlReport.testClass("FooTest")
            assertTestClassExecutionResultReport(classReport)
        }
    
        def "attaches output events to correct test descriptors"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:51:39 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/jupiter/JUnitJupiterLoggingOutputCaptureIntegrationTest.groovy

            ))
            classResult.assertStderr(containsString(
                "before class err\n" +
                "after class err\n"
            ))
    
    
            def htmlReport = new HtmlTestExecutionResult(testDirectory)
            def classReport = htmlReport.testClass("OkTest")
            classReport.assertStdout(containsString(
                "class loaded\n" +
                "before class out\n" +
                "test constructed\n" +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:51:39 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/DependencyVerificationReportWriter.java

            doRender(displayName, failuresByArtifact, summaryRenderer, useKeyServers);
            doRender(displayName, failuresByArtifact, htmlRenderer, useKeyServers);
            File htmlReport = htmlRenderer.writeReport();
            return new VerificationReport(summaryRenderer.render(), htmlReport);
        }
    
        public synchronized void assertInitialized() {
            if (rendererInitializer != null) {
                rendererInitializer.run();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/ChecksumAndSignatureVerificationOverride.java

        }
    
        public String buildConsoleErrorMessage(VerificationReport report) {
            String errorMessage = report.getSummary();
            String htmlReport = new ConsoleRenderer().asClickableFileUrl(report.getHtmlReport());
            errorMessage += "\n\nOpen this report for more details: " + htmlReport;
            return errorMessage;
        }
    
        @Override
        public ResolvedArtifactResult verifiedArtifact(ResolvedArtifactResult artifact) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 21 03:12:15 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  7. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/pmd/PmdPluginVersionIntegrationTest.groovy

                    reports {
                        xml.required = false
                        html.outputLocation = file("htmlReport.html")
                    }
                }
            """
    
            expect:
            succeeds("check")
            !file("build/reports/pmd/main.xml").exists()
            file("htmlReport.html").exists()
        }
    
        def "use custom rule set files"() {
            assumeTrue(fileLockingIssuesSolved())
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:47:00 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  8. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/AbstractTestTask.java

        }
    
        private void handleTestFailures() {
            String message = "There were failing tests";
    
            DirectoryReport htmlReport = getReports().getHtml();
            if (htmlReport.getRequired().get()) {
                String reportUrl = new ConsoleRenderer().asClickableFileUrl(htmlReport.getEntryPoint());
                message = message.concat(". See the report at: " + reportUrl);
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:49:01 UTC 2024
    - 27.6K bytes
    - Viewed (0)
Back to top