Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for htmlReport (0.26 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/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/VerificationReport.java

        private final String summary;
        private final File htmlReport;
    
        public VerificationReport(String summary, File htmlReport) {
            this.summary = summary;
            this.htmlReport = htmlReport;
        }
    
        public String getSummary() {
            return summary;
        }
    
        public File getHtmlReport() {
            return htmlReport;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TestReportTaskIntegrationTest.groovy

            super.sample(sample)
    
            when:
            run "testReport"
    
            then:
            def htmlReport = new HtmlTestExecutionResult(sample.dir, "build/reports/allTests")
            htmlReport.testClass("org.gradle.sample.CoreTest").assertTestCount(1, 0, 0).assertTestPassed("ok").assertStdout(equalTo("hello from CoreTest.\n"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 16.6K bytes
    - Viewed (0)
  4. 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)
  5. subprojects/diagnostics/src/test/groovy/org/gradle/api/plugins/ProjectReportsPluginTest.groovy

            dependencyReport.projects == [project] as Set
    
            Task htmlReport = project.tasks.getByName(ProjectReportsPlugin.HTML_DEPENDENCY_REPORT);
            htmlReport instanceOf(HtmlDependencyReportTask.class)
            htmlReport.reports.html.outputLocation.get().asFile == new File(project.buildDir, "reports/project/dependencies")
            htmlReport.projects == [project] as Set
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 25 21:08:17 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  6. platforms/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/JacocoPluginIntegrationTest.groovy

            succeeds('test', 'jacocoTestReport')
    
            then:
            executedAndNotSkipped(":jacocoTestReport")
            htmlReport().exists()
            reportResourceDir.exists()
    
            when:
            succeeds('jacocoTestReport')
    
            then:
            skipped(":jacocoTestReport")
            htmlReport().exists()
            reportResourceDir.exists()
    
            when:
            reportResourceDir.deleteDir()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  7. platforms/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/JacocoVersionCompatibilityIntegrationTest.groovy

            javaProjectUnderTest.writeSourceFiles()
    
            when:
            succeeds('test', 'jacocoTestReport')
    
            then:
            def report = htmlReport()
            report.totalCoverage() == 100
            report.assertVersion(version)
        }
    
        private JacocoReportFixture htmlReport(String basedir = "build/reports/jacoco/test/html") {
            return new JacocoReportFixture(file(basedir))
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. platforms/software/reporting/src/main/java/org/gradle/api/reporting/plugins/BuildDashboardPlugin.java

                    buildDashboardTask.setGroup("reporting");
    
                    DirectoryReport htmlReport = buildDashboardTask.getReports().getHtml();
                    htmlReport.getOutputLocation().convention(project.getLayout().getProjectDirectory().dir(project.provider(() -> project.getExtensions().getByType(ReportingExtension.class).file("buildDashboard").getAbsolutePath())));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. 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)
  10. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/checkstyle/CheckstylePluginHtmlReportIntegrationTest.groovy

            fooAnchorName == fooAnchorLink
        }
    
        private Document parseReport() {
            def htmlReport = file("build/reports/checkstyle/main.html")
            htmlReport.assertExists()
            return Jsoup.parse(htmlReport)
        }
    
        /**
         * Parse a HTML table into a list of lists.
         * @param table
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 16 22:34:07 UTC 2023
    - 7.6K bytes
    - Viewed (0)
Back to top