We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d3891c commit 60bd77aCopy full SHA for 60bd77a
build.gradle
@@ -28,6 +28,7 @@ subprojects { project ->
28
dependencies {
29
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
30
compile "org.jetbrains.kotlin:kotlin-reflect"
31
+ testCompile "junit:junit:4.12"
32
}
33
34
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile) {
ktorm-core/src/test/kotlin/me/liuwj/ktorm/database/DatabaseTest.kt
@@ -0,0 +1,14 @@
1
+package me.liuwj.ktorm.database
2
+
3
+import org.junit.Test
4
5
+/**
6
+ * Created by vince on Dec 02, 2018.
7
+ */
8
+class DatabaseTest {
9
10
+ @Test
11
+ fun testTravis() {
12
+ assert(false)
13
+ }
14
+}
0 commit comments