Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for assertThatCause (0.21 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithDependenciesIntegrationTest.groovy

            failure.assertResolutionFailure(":app:implementation")
            failure.assertHasFailures(1)
            failure.assertThatCause(CoreMatchers.containsString("Could not find unknown:not-found:4.3"))
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 54.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

    		implementation project(':impl')
    	}
    
    	configurations.runtimeClasspath.resolutionStrategy.failOnVersionConflict()
    }
    """
    
            expect:
            runAndFail("tool:dependencies")
            failure.assertThatCause(containsString(CONFLICT_FOUND_HEADER_MESSAGE))
            failure.assertHasResolutions("Run with :tool:dependencyInsight --configuration runtimeClasspath " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
Back to top