Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for noExtraLogging (0.14 sec)

  1. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGUpToDateCheckIntegrationTest.groovy

    import org.gradle.testing.fixture.TestNGCoverage
    import spock.lang.Issue
    
    class TestNGUpToDateCheckIntegrationTest extends AbstractIntegrationSpec {
    
        def setup() {
            executer.noExtraLogging()
            file('src/test/java/SomeTest.java') << '''
                public class SomeTest {
                    @org.testng.annotations.Test(groups = {"group to include"})
                    public void pass() {}
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 18 12:30:10 UTC 2024
    - 6K 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/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)
  4. 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)
Back to top