aboutsummaryrefslogtreecommitdiff
path: root/integration-tests/gradle-integration-tests/src/test
diff options
context:
space:
mode:
authorsebastian.sellmair <sebastian.sellmair@jetbrains.com>2020-07-01 14:30:49 +0200
committerPaweł Marks <Kordyjan@users.noreply.github.com>2020-07-02 12:48:53 +0200
commitc0ce35627413103d64845ca3c56b9ceab0606b6b (patch)
tree5eef75366a143f27a4fc61aa6fa236889b01d718 /integration-tests/gradle-integration-tests/src/test
parent1bd0cba71db2330a5e827860c4fa8c5b7eda12b4 (diff)
downloaddokka-c0ce35627413103d64845ca3c56b9ceab0606b6b.tar.gz
dokka-c0ce35627413103d64845ca3c56b9ceab0606b6b.tar.bz2
dokka-c0ce35627413103d64845ca3c56b9ceab0606b6b.zip
Re-implement first basic gradle integration test
Diffstat (limited to 'integration-tests/gradle-integration-tests/src/test')
-rw-r--r--integration-tests/gradle-integration-tests/src/test/kotlin/org/jetbrains/dokka/gradle/BasicTest.kt23
1 files changed, 16 insertions, 7 deletions
diff --git a/integration-tests/gradle-integration-tests/src/test/kotlin/org/jetbrains/dokka/gradle/BasicTest.kt b/integration-tests/gradle-integration-tests/src/test/kotlin/org/jetbrains/dokka/gradle/BasicTest.kt
index 2e1a0d41..38516b48 100644
--- a/integration-tests/gradle-integration-tests/src/test/kotlin/org/jetbrains/dokka/gradle/BasicTest.kt
+++ b/integration-tests/gradle-integration-tests/src/test/kotlin/org/jetbrains/dokka/gradle/BasicTest.kt
@@ -37,15 +37,24 @@ class BasicTest : AbstractDokkaGradleTest() {
"""<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html"><span class="identifier">String</span></a>""")
}
- @Test fun `test kotlin 1_0_7 and gradle 2_14_1`() {
- doTest("2.14.1", "1.0.7")
+ @Test
+ fun `test gradle 6_5_1 kotlin 1_3_72`() {
+ doTest(gradleVersion = "6.5.1", kotlinVersion = "1.3.72")
}
- @Test fun `test kotlin 1_1_2 and gradle 4_0`() {
- doTest("4.0", "1.1.2")
+ @Test
+ fun `test gradle 6_5_0 kotlin 1_3_72`() {
+ doTest(gradleVersion = "6.5.0", kotlinVersion = "1.3.72")
}
- @Test fun `test kotlin 1_2_20 and gradle 4_5`() {
- doTest("4.5", "1.2.20")
+ @Test
+ fun `test gradle 5_6_4 kotlin 1_3_72`() {
+ doTest(gradleVersion = "5.6.4", kotlinVersion = "1.3.72")
}
-} \ No newline at end of file
+
+ @Test
+ fun `test gradle 5_6_4 kotlin 1_3_30`() {
+ doTest(gradleVersion = "5.6.4", kotlinVersion = "1.3.30")
+ }
+
+}