So I'm not really sure if this is a kotlin or grad...
# announcements
r
So I'm not really sure if this is a kotlin or gradle issue, but I figured maybe someone here can help. I have a very simple project setup, and wanted to add the dependencies for the kotlin testing utilities:
Copy code
dependencies {
    compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
    testCompile group: 'junit', name: 'junit', version: '4.11'
    testCompile "org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version"
    testCompile "org.jetbrains.kotlin:kotlin-test:$kotlin_version"
}
But no matter what I try, any import like
import kotlin.test.assertEquals
won't resolve in my test classes. JUnit works, kotlin itself works, just these dependencies won't budge. I'm pretty frustrated by now. Am I doing something wrong?