Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for testLogging (0.18 sec)

  1. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/logging/FullExceptionFormatterTest.groovy

    import org.gradle.api.tasks.testing.logging.TestLogging
    import org.gradle.api.tasks.testing.logging.TestStackTraceFilter
    import org.gradle.internal.serialize.PlaceholderException
    import spock.lang.Specification
    
    class FullExceptionFormatterTest extends Specification {
        def testDescriptor = new SimpleTestDescriptor()
        def testLogging = Mock(TestLogging)
        def formatter = new FullExceptionFormatter(testLogging)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/jvm/AbstractConsoleJvmTestLoggingFunctionalTest.groovy

            """
                test {
                    testLogging {
                        events(${events.collect { "'$it'" }.join(', ')})
                    }
                }
            """
        }
    
        private static String testLoggingStandardStream() {
            """
                test {
                    testLogging {
                        showStandardStreams = true
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 14:21:18 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/enduser/GradleRunnerMiscEndUserIntegrationTest.groovy

                            dependencies {
                                implementation localGroovy()
                            }
                        }
                    }
                }
    
                test {
                    testLogging.exceptionFormat = 'full'
                }
            """
        }
    
        @NoDebug
        def "fails appropriately if runner is loaded from a JAR that is not part of the distribution and no explicit version set"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  4. platforms/extensibility/unit-test-fixtures/src/integTest/groovy/org/gradle/testfixtures/ProjectBuilderEndUserIntegrationTest.groovy

            ${mavenCentralRepository()}
    
            testing {
                suites {
                    test {
                        useSpock()
                    }
                }
            }
            test {
                testLogging.exceptionFormat = 'full'
            }
    
            // Needed when using ProjectBuilder
            class AddOpensArgProvider implements CommandLineArgumentProvider {
                private final Test test;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/shared-configuration.kt

        if (project.hasProperty("org.gradle.integtest.debug")) {
            systemProperties["org.gradle.integtest.debug"] = "true"
            testLogging.showStandardStreams = true
        }
        // TODO Move magic property out
        if (project.hasProperty("org.gradle.integtest.verbose")) {
            testLogging.showStandardStreams = true
        }
        // TODO Move magic property out
        if (project.hasProperty("org.gradle.integtest.launcher.debug")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 23:14:25 UTC 2024
    - 12K bytes
    - Viewed (0)
  6. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.api.tasks.testing.logging.TestLogging.getMaxGranularity()> does not have raw return type assignable to org.gradle.api.provider.Property in (TestLogging.java:0)
    Method <org.gradle.api.tasks.testing.logging.TestLogging.getMinGranularity()> does not have raw return type assignable to org.gradle.api.provider.Property in (TestLogging.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)
  7. 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)
  8. 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