Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for expectResolvedComponentResult (0.39 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyModuleArtifactResolutionIntegrationTest.groovy

            given:
            IvyHttpModule module = publishModule()
    
            when:
            fixture.requestComponent('IvyModule').requestArtifact('IvyDescriptorArtifact')
                   .expectResolvedComponentResult().expectMetadataFiles(module.ivy.file)
                   .createVerifyTaskModuleComponentIdentifier()
    
            module.ivy.expectGet()
    
            then:
            checkArtifactsResolvedAndCached()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenModuleArtifactResolutionIntegrationTest.groovy

            given:
            MavenHttpModule module = publishModule()
    
            when:
            fixture.requestComponent('MavenModule').requestArtifact('MavenPomArtifact')
                .expectResolvedComponentResult().expectMetadataFiles(module.pom.file)
                .createVerifyTaskModuleComponentIdentifier()
    
            module.pom.expectGet()
    
            then:
            checkArtifactsResolvedAndCached()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/MetadataArtifactResolveTestFixture.groovy

            this
        }
    
        MetadataArtifactResolveTestFixture requestArtifact(String artifact) {
            this.requestedArtifact = artifact
            this
        }
    
        MetadataArtifactResolveTestFixture expectResolvedComponentResult() {
            this.expectedComponentResult = ComponentArtifactsResult
            this
        }
    
        MetadataArtifactResolveTestFixture expectUnresolvedComponentResult(Throwable expectedException) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.2K bytes
    - Viewed (0)
Back to top