Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 56 of 56 for testLogging (0.17 sec)

  1. platforms/documentation/docs/src/docs/userguide/native/swift_testing.adoc

    Note that, by default, both task type always executes every test that it detects, irrespective of this setting.
    
    `testLogging` - default: not set::
    This property represents a set of options that control which test events are logged and at what level.
    You can also configure other logging behavior via this property.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    |===
    
    Test logging can be modified on a per-log-level basis by adjusting the appropriate link:{javadocPath}/org/gradle/api/tasks/testing/logging/TestLogging.html[TestLogging] instances in the link:{javadocPath}/org/gradle/api/tasks/testing/AbstractTestTask.html#getTestLogging--[testLogging] property of the test task.
    For example, to adjust the `INFO` level test logging configuration, modify the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  3. build-logic/performance-testing/src/main/kotlin/gradlebuild/performance/PerformanceTestPlugin.kt

                jvmArgs("-Xmx5g", "-XX:+HeapDumpOnOutOfMemoryError")
                if (project.performanceTestVerbose.isPresent) {
                    testLogging.showStandardStreams = true
                }
            }
            performanceTest.configure(configure)
    
            val testResultsZipTask = project.testResultsZipTaskFor(performanceTest)
            performanceTest.configure {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/Test.java

     *
     *   // explicitly include or exclude tests
     *   include 'org/foo/**'
     *   exclude 'org/boo/**'
     *
     *   // show standard out and standard error of the test JVM(s) on the console
     *   testLogging.showStandardStreams = true
     *
     *   // set heap size for the test JVM(s)
     *   minHeapSize = "128m"
     *   maxHeapSize = "512m"
     *
     *   // set JVM arguments for the test JVM(s)
     *   jvmArgs '-XX:MaxPermSize=256m'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 42.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    Note that it's necessary to specify the type of the task explicitly, otherwise the script won't compile because the inferred type will be `Task`, not `Test`, and the `testLogging` property is specific to the `Test` task type.
    You can, however, omit the type if you only need to configure properties or to call methods that are common to all tasks, i.e. they are declared on the `Task` interface.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  6. testing/architecture-test/src/changes/archunit-store/public-api-methods-return-allowed-types.txt

    Method <org.gradle.api.tasks.testing.AbstractTestTask.testLogging(groovy.lang.Closure)> has arguments/return type groovy.lang.Closure that is not Gradle public API or primitive or built-in JDK classes or Kotlin classes in (AbstractTestTask.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:21:31 UTC 2024
    - 91.3K bytes
    - Viewed (0)
Back to top