Package dev.gradleplugins
Interface GradleVersionCoverageTestingStrategy
-
- All Superinterfaces:
GradlePluginTestingStrategy,org.gradle.api.Named
public interface GradleVersionCoverageTestingStrategy extends GradlePluginTestingStrategy
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface dev.gradleplugins.GradlePluginTestingStrategy
GradlePluginTestingStrategy.Spec<T extends GradlePluginTestingStrategy>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetVersion()Returns the Gradle version this testing strategy covers.booleanisLatestGlobalAvailable()Returns true if the Gradle version of this testing strategy is the latest Global Available (GA) according to current version metadata.booleanisLatestNightly()Returns true if the Gradle version of this testing strategy is the latest Global Available (GA) according to latest nightly version metadata.
-
-
-
Method Detail
-
getVersion
java.lang.String getVersion()
Returns the Gradle version this testing strategy covers.- Returns:
- Gradle version coverage, never null
-
isLatestGlobalAvailable
boolean isLatestGlobalAvailable()
Returns true if the Gradle version of this testing strategy is the latest Global Available (GA) according to current version metadata.- Returns:
- true if this testing strategy is for the latest GA version
-
isLatestNightly
boolean isLatestNightly()
Returns true if the Gradle version of this testing strategy is the latest Global Available (GA) according to latest nightly version metadata.- Returns:
- true if this testing strategy is for the latest nightly version
-
-