Skip to content

Commit 5311ab9

Browse files
committed
Port tests to kotlintest
1 parent 1bc1474 commit 5311ab9

File tree

3 files changed

+248
-335
lines changed

3 files changed

+248
-335
lines changed

build.gradle

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,13 @@ repositories {
5454
}
5555

5656
dependencies {
57-
testCompile 'junit:junit:4.12'
5857
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
5958
compile "com.xenomachina:xenocom:$xenocom_version"
59+
60+
testCompile "io.kotlintest:kotlintest:$kotlintest_version"
61+
// This is to ensure that kotlintest uses the correct version of
62+
// kotlin-reflect
63+
testCompile "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
6064
}
6165

6266
sourceSets {

gradle.properties

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
version=1.1.1-SNAPSHOT
22

33
# Dependency versions
4-
kotlin_version = 1.1.1
54
dokka_version = 0.9.13
6-
xenocom_version = 0.0.3
5+
kotlintest_version = 2.0.0
6+
kotlin_version = 1.1.1
77
ktlint_version = 0.6.1
8+
xenocom_version = 0.0.4

0 commit comments

Comments
 (0)