Kotlin compiler does not find import kotlin.test
up vote
0
down vote
favorite
I'm trying to compile the following via command-line:
import kotlin.test.assertTrue
fun main(args: Array<String>) {
assertTrue(false)
}
However, the compiler fails with:
$ kotlinc -d MyCode.jar MyCode.kt
MyCode.kt:1:15: error: unresolved reference: test
import kotlin.test.assertTrue
^
What am I missing?
kotlin
add a comment |
up vote
0
down vote
favorite
I'm trying to compile the following via command-line:
import kotlin.test.assertTrue
fun main(args: Array<String>) {
assertTrue(false)
}
However, the compiler fails with:
$ kotlinc -d MyCode.jar MyCode.kt
MyCode.kt:1:15: error: unresolved reference: test
import kotlin.test.assertTrue
^
What am I missing?
kotlin
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I'm trying to compile the following via command-line:
import kotlin.test.assertTrue
fun main(args: Array<String>) {
assertTrue(false)
}
However, the compiler fails with:
$ kotlinc -d MyCode.jar MyCode.kt
MyCode.kt:1:15: error: unresolved reference: test
import kotlin.test.assertTrue
^
What am I missing?
kotlin
I'm trying to compile the following via command-line:
import kotlin.test.assertTrue
fun main(args: Array<String>) {
assertTrue(false)
}
However, the compiler fails with:
$ kotlinc -d MyCode.jar MyCode.kt
MyCode.kt:1:15: error: unresolved reference: test
import kotlin.test.assertTrue
^
What am I missing?
kotlin
kotlin
asked Nov 5 at 1:56
Henning Koehler
878410
878410
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
2
down vote
accepted
Are org.jetbrains.kotlin:kotlin-test
and org.jetbrains.kotlin:kotlin-test-junit
specified in dependencies? kotlin.test
is not a base module
New contributor
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
accepted
Are org.jetbrains.kotlin:kotlin-test
and org.jetbrains.kotlin:kotlin-test-junit
specified in dependencies? kotlin.test
is not a base module
New contributor
add a comment |
up vote
2
down vote
accepted
Are org.jetbrains.kotlin:kotlin-test
and org.jetbrains.kotlin:kotlin-test-junit
specified in dependencies? kotlin.test
is not a base module
New contributor
add a comment |
up vote
2
down vote
accepted
up vote
2
down vote
accepted
Are org.jetbrains.kotlin:kotlin-test
and org.jetbrains.kotlin:kotlin-test-junit
specified in dependencies? kotlin.test
is not a base module
New contributor
Are org.jetbrains.kotlin:kotlin-test
and org.jetbrains.kotlin:kotlin-test-junit
specified in dependencies? kotlin.test
is not a base module
New contributor
New contributor
answered Nov 5 at 6:50
bam bam
763
763
New contributor
New contributor
add a comment |
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53147358%2fkotlin-compiler-does-not-find-import-kotlin-test%23new-answer', 'question_page');
}
);
Post as a guest
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password