<@U0NJFGERK> regardless are you using a kotlin src...
# test
j
@vint regardless are you using a kotlin src folder for your tests and added it to your build file?
Copy code
sourceSets {
   main.java.srcDirs += 'src/main/kotlin'
   test.java.srcDirs += 'src/test/kotlin'
}
I believe thats required for gradle to detect any new test files in your project