Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getMergeReruns (0.12 sec)

  1. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/DefaultJUnitXmlReport.java

        private boolean outputPerTestCase;
    
        public DefaultJUnitXmlReport(String name, Task task, ObjectFactory objectFactory) {
            super(name, task, null);
            this.getMergeReruns().convention(false);
            this.getIncludeSystemOutLog().convention(true);
            this.getIncludeSystemErrLog().convention(true);
        }
    
        @Override
        public boolean isOutputPerTestCase() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:51:39 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/JUnitXmlReport.java

         * @see <a href="https://plugins.jenkins.io/flaky-test-handler">https://plugins.jenkins.io/flaky-test-handler</a>
         * @since 6.8
         */
        @Input
        Property<Boolean> getMergeReruns();
    
        /**
         * Decide to include or omit the system out log in the XML report. The default behavior is to have it.
         *
         * @since 8.8
         */
        @Input
        @Incubating
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:49:56 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/AbstractTestTask.java

                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)
Back to top