Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 28 of 28 for noExtraLogging (0.16 sec)

  1. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitIntegrationTest.groovy

     */
    abstract class AbstractJUnitIntegrationTest extends AbstractTestingMultiVersionIntegrationTest {
        def setup() {
            executer.noExtraLogging()
        }
    
        def "can use test super classes from another project"() {
            given:
            file('settings.gradle').write("include 'a', 'b'")
            file('b/build.gradle') << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  2. platforms/core-runtime/instrumentation-agent-services/src/integTest/groovy/org/gradle/internal/instrumentation/agent/AgentApplicationTest.groovy

            int currentSize = daemons.getRegistry().getAll().size()
            if (shouldApplyAgent != null) {
                withAgentApplied(shouldApplyAgent)
            }
            def daemon = executer.noExtraLogging().withArgument("--foreground").start()
            // Wait for foreground daemon to be ready
            poll() { assert daemons.getRegistry().getAll().size() == (currentSize + 1) }
            return daemon
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonFeedbackIntegrationSpec.groovy

            given:
            file("build.gradle") << """
                logger.debug('debug me!')
                logger.info('info me!')
            """
    
            when:
            def daemon = executer.noExtraLogging().withArguments("--foreground").start()
    
            then:
            poll(60) { assert daemon.standardOutput.contains(DaemonMessages.PROCESS_STARTED) }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

            executer.withBuildJvmOpts(buildJvmOpts);
            if (useOnlyRequestedJvmOpts) {
                executer.useOnlyRequestedJvmOpts();
            }
            executer.noExtraLogging();
    
            if (expectedGenericDeprecationWarnings > 0) {
                executer.expectDeprecationWarnings(expectedGenericDeprecationWarnings);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  8. 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