Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for UnsupportedWithConfigurationCacheRule (0.5 sec)

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

    import static org.gradle.integtests.fixtures.ToBeFixedForConfigurationCacheExtension.isEnabledBottomSpec
    import static ToBeFixedSpecInterceptor.iterationMatches
    import static org.junit.Assume.assumeTrue
    
    class UnsupportedWithConfigurationCacheRule implements TestRule {
    
        @Override
        Statement apply(Statement base, Description description) {
            def annotation = description.getAnnotation(UnsupportedWithConfigurationCache.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 08:57:52 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractIntegrationTest.java

        @Rule
        public final TestNameTestDirectoryProvider testDirectoryProvider = new TestNameTestDirectoryProvider(getClass());
    
        @Rule
        public final UnsupportedWithConfigurationCacheRule unsupportedWithConfigurationCache = new UnsupportedWithConfigurationCacheRule();
    
        @Rule
        public final ToBeFixedForConfigurationCacheRule toBeFixedForConfigurationCache = new ToBeFixedForConfigurationCacheRule();
    
        @Rule
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 09:04:13 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/ToBeFixedForConfigurationCacheRule.groovy

                if (skip == ToBeFixedForConfigurationCache.Skip.DO_NOT_SKIP) {
                    return new ExpectingFailureRuleStatement(base, "Configuration Cache")
                } else {
                    return new UnsupportedWithConfigurationCacheRule.SkippingRuleStatement(base)
                }
            }
            return base
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 09:04:13 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top