hey guy, i am trying to configure the working dire...
# getting-started
a
hey guy, i am trying to configure the working directory for the
test
task, as when I run the test from gradle command, it says
no source found
in my
build
directory I have two folders
java
and
kotlin
, the kotlin folder includes the build files for my tests, but when I run the command
gradle test
it tries to find the tests build files under
java folder
not under
kotlin-folder
in my
build.gradle
file, I only use
Copy code
tasks.test {
    useJUnitPlatform()
}