|
|
@ -44,9 +44,8 @@ public class KotlinPluginActionIntegrationTests {
|
|
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
@Test
|
|
|
|
public void kotlinVersionMatchesKotlinPluginVersion() {
|
|
|
|
public void kotlinVersionMatchesKotlinPluginVersion() {
|
|
|
|
String output = this.gradleBuild
|
|
|
|
String output = this.gradleBuild.build("kotlinVersion", "dependencies",
|
|
|
|
.build("kotlinVersion", "dependencies", "--configuration", "compile")
|
|
|
|
"--configuration", "compileClasspath").getOutput();
|
|
|
|
.getOutput();
|
|
|
|
|
|
|
|
assertThat(output).contains("Kotlin version: 1.2.10");
|
|
|
|
assertThat(output).contains("Kotlin version: 1.2.10");
|
|
|
|
assertThat(output)
|
|
|
|
assertThat(output)
|
|
|
|
.containsPattern("org.jetbrains.kotlin:kotlin-stdlib-jdk8:* -> 1.2.10");
|
|
|
|
.containsPattern("org.jetbrains.kotlin:kotlin-stdlib-jdk8:* -> 1.2.10");
|
|
|
|