Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for includeSystemOutLog (0.5 sec)

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

        public final boolean includeSystemOutLog;
        public final boolean includeSystemErrLog;
    
        public JUnitXmlResultOptions(boolean outputPerTestCase, boolean mergeReruns, boolean includeSystemOutLog, boolean includeSystemErrLog) {
            this.outputPerTestCase = outputPerTestCase;
            this.mergeReruns = mergeReruns;
            this.includeSystemOutLog = includeSystemOutLog;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:49:01 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/JUnit4LoggingOutputCaptureIntegrationTest.groovy

            "// default includeSystemOutLog"    | "// default includeSystemErrLog"  || true                || true
            "includeSystemOutLog = true"        | "includeSystemErrLog = true"      || true                || true
            "includeSystemOutLog = false"       | "includeSystemErrLog = true"      || false               || true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:51:05 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/vintage/JUnitVintageLoggingOutputCaptureIntegrationTest.groovy

            "// default includeSystemOutLog"    | "// default includeSystemErrLog"  || true                || true
            "includeSystemOutLog = true"        | "includeSystemErrLog = true"      || true                || true
            "includeSystemOutLog = false"       | "includeSystemErrLog = true"      || false               || true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:51:39 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/jupiter/JUnitJupiterLoggingOutputCaptureIntegrationTest.groovy

            "// default includeSystemOutLog"    | "// default includeSystemErrLog"  || true                || true
            "includeSystemOutLog = true"        | "includeSystemErrLog = true"      || true                || true
            "includeSystemOutLog = false"       | "includeSystemErrLog = true"      || false               || true
    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/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGLoggingOutputCaptureIntegrationTest.groovy

            "// default includeSystemOutLog"    | "// default includeSystemErrLog"  || true                || true
            "includeSystemOutLog = true"        | "includeSystemErrLog = true"      || true                || true
            "includeSystemOutLog = false"       | "includeSystemErrLog = true"      || false               || true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:51:39 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/testing/junit-xml-results/kotlin/build.gradle.kts

    java.testResultsDir = layout.buildDirectory.dir("junit-xml")
    // end::configure-location-convention[]
    
    // 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)
  7. platforms/documentation/docs/src/snippets/testing/junit-xml-results/groovy/build.gradle

    java.testResultsDir = layout.buildDirectory.dir("junit-xml")
    // end::configure-location-convention[]
    
    // tag::configure-content[]
    test {
        reports {
            junitXml {
                includeSystemOutLog = false // defaults to true
                includeSystemErrLog = false // defaults to true
                outputPerTestCase = 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
    - 786 bytes
    - Viewed (0)
  8. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/junit/result/JUnitXmlResultWriter.java

                } else {
                    writeTestCasesWithDiscreteRerunHandling(writer, methodResults, className, classId);
                }
    
                if (options.includeSystemOutLog) {
                    writer.startElement("system-out");
                    writeOutputs(writer, classId, !options.outputPerTestCase, TestOutputEvent.Destination.StdOut);
                    writer.endElement();
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:49:57 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    include::sample[dir="snippets/testing/junit-xml-results/groovy",files="build.gradle[tags=configure-content]"]
    ====
    
    [[junit_xml_configuration_output_filtering]]
    ===== includeSystemOutLog & includeSystemErrLog
    
    The `includeSystemOutLog` option allows configuring whether or not test output written to standard out is exported to the XML report file.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
Back to top