Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for isOutputPerTestCase (0.21 sec)

  1. platforms/documentation/docs/src/snippets/testing/junit-xml-results/kotlin/build.gradle.kts

    // tag::configure-content[]
    tasks.test {
        reports {
            junitXml.apply {
                includeSystemOutLog = false // defaults to true
                includeSystemErrLog = false // defaults to true
                isOutputPerTestCase = true // defaults to false
                mergeReruns = true // defaults to false
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:49:56 UTC 2024
    - 802 bytes
    - Viewed (0)
  2. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/DefaultJUnitXmlReport.java

            this.getMergeReruns().convention(false);
            this.getIncludeSystemOutLog().convention(true);
            this.getIncludeSystemErrLog().convention(true);
        }
    
        @Override
        public boolean isOutputPerTestCase() {
            return outputPerTestCase;
        }
    
        @Override
        public void setOutputPerTestCase(boolean outputPerTestCase) {
            this.outputPerTestCase = outputPerTestCase;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:51:39 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/JUnitXmlReport.java

     */
    public interface JUnitXmlReport extends DirectoryReport {
    
        /**
         * Should the output be associated with individual test cases instead of at the suite level.
         */
        @Input
        boolean isOutputPerTestCase();
    
        /**
         * Should the output be associated with individual test cases instead of at the suite level.
         */
        void setOutputPerTestCase(boolean outputPerTestCase);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:49:56 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/AbstractTestTask.java

                JUnitXmlReport junitXml = reports.getJunitXml();
                if (junitXml.getRequired().get()) {
                    JUnitXmlResultOptions xmlResultOptions = new JUnitXmlResultOptions(
                        junitXml.isOutputPerTestCase(),
                        junitXml.getMergeReruns().get(),
                        junitXml.getIncludeSystemOutLog().get(),
                        junitXml.getIncludeSystemErrLog().get()
                    );
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:49:01 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  5. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.api.tasks.scala.ScalaDocOptions.isUnchecked()> does not have raw return type assignable to org.gradle.api.provider.Property in (ScalaDocOptions.java:0)
    Method <org.gradle.api.tasks.testing.JUnitXmlReport.isOutputPerTestCase()> does not have raw return type assignable to org.gradle.api.provider.Property in (JUnitXmlReport.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
Back to top