Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ReproducibleArchivesInterceptor (0.52 sec)

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

    import org.gradle.integtests.fixtures.extensions.AbstractMultiTestInterceptor
    import org.spockframework.runtime.extension.IMethodInvocation
    
    class ReproducibleArchivesInterceptor extends AbstractMultiTestInterceptor {
    
        protected ReproducibleArchivesInterceptor(Class<?> target) {
            super(target)
        }
    
        @Override
        protected void createExecutions() {
            add(new ReproducibleArchivesExecution(false))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/archives/ReproducibleArchivesTestExtension.groovy

    @CompileStatic
    class ReproducibleArchivesTestExtension extends MultiTestExtension<TestReproducibleArchives> {
    
        @Override
        protected AbstractMultiTestInterceptor makeInterceptor(Class<?> testClass) {
            return new ReproducibleArchivesInterceptor(testClass);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.1K bytes
    - Viewed (0)
Back to top