Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ProgressLoggingFixture (1.21 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/ProgressLoggingFixture.groovy

    import javax.inject.Inject
    
    /**
     * @deprecated should use build operations fixture instead.
     */
    @Deprecated
    class ProgressLoggingFixture extends InitScriptExecuterFixture {
    
        private TestFile fixtureData
    
        ProgressLoggingFixture(GradleExecuter executer, TestDirectoryProvider testDir) {
            super(executer, testDir)
        }
    
        List<String> progressContent
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/ProgressLoggingIntegrationTest.groovy

    import org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache
    import org.gradle.integtests.fixtures.executer.ProgressLoggingFixture
    
    class ProgressLoggingIntegrationTest extends AbstractIntegrationSpec {
        @org.junit.Rule
        ProgressLoggingFixture events = new ProgressLoggingFixture(executer, temporaryFolder)
    
        def "generates progress events during build"() {
            when:
            run()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 18 22:31:11 UTC 2020
    - 1.6K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/AbstractTestProgressLoggingIntegrationTest.groovy

    package org.gradle.testing
    
    import org.gradle.integtests.fixtures.executer.ProgressLoggingFixture
    import org.gradle.testing.fixture.AbstractTestingMultiVersionIntegrationTest
    import org.junit.Rule
    
    abstract class AbstractTestProgressLoggingIntegrationTest extends AbstractTestingMultiVersionIntegrationTest {
        @Rule ProgressLoggingFixture events = new ProgressLoggingFixture(executer, temporaryFolder)
    
        def setup() {
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.6K bytes
    - Viewed (0)
Back to top