Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for noExtraLogging (0.19 sec)

  1. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/LoggingIntegrationTest.groovy

            String initScript = new File(loggingDir, 'init.gradle').absolutePath
            List<String> allArgs = logLevel.args + ['-I', initScript]
    
            when:
            executer.noExtraLogging().inDirectory(loggingDir).withArguments(allArgs)
            run "log"
            then:
            logLevel.checkOuts(result)
    
            where:
            level << ['quiet', 'lifecycle', 'info', 'debug']
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyReportTaskIntegrationTest.groovy

                project(':B') {
                    configurations.create('default')
                    dependencies.add("default", project(':C'))
                }
            """
    
            when:
            executer.noExtraLogging()
            run "dependencies"
    
            then:
            output.contains """
    conf
    +--- project :A FAILED
    \\--- project :B
         \\--- project :C FAILED
    """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 25 05:32:54 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitCategoriesOrTagsCoverageIntegrationSpec.groovy

        abstract TestSourceGenerator getTestSourceGenerator()
        abstract String getSingularCategoryOrTagName()
        abstract String getPluralCategoryOrTagName()
    
        def setup() {
            executer.noExtraLogging()
            buildFile << """
                apply plugin: "java"
    
                repositories {
                    mavenCentral()
                }
    
                dependencies {
                    ${testFrameworkDependencies}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 14:54:49 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGIntegrationTest.groovy

    import static org.hamcrest.CoreMatchers.not
    
    @TargetCoverage({ TestNGCoverage.SUPPORTED_BY_JDK })
    class TestNGIntegrationTest extends MultiVersionIntegrationSpec {
    
        def setup() {
            executer.noExtraLogging()
            TestNGCoverage.enableTestNG(buildFile, version)
        }
    
        def "executes tests in correct environment"() {
            given:
            buildFile << """
                test {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGXmlResultAndHtmlReportIntegrationTest.groovy

        @Shared List<Mode> modes = [outputAtSuite, outputPerTestCase]
    
        def setup() {
            executer.noExtraLogging()
            setupTestCases()
        }
    
        def "produces JUnit xml results - #mode.name"() {
            when:
            runWithTestConfig("useTestNG(); $mode.config")
    
            then:
            verify(mode)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 25 21:27:42 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleExecuter.java

         */
        GradleExecuter withJdkWarningChecksEnabled();
    
        /**
         * An executer may decide to implicitly bump the logging level, unless this is called.
         */
        GradleExecuter noExtraLogging();
    
        /**
         * Configures that any daemons used by the execution are unique to the test.
         *
         * This value is persistent across executions by this executer.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20.3K bytes
    - Viewed (0)
Back to top