Hi! I'm just trying out my first Kotlin native pro...
# kotlin-native
h
Hi! I'm just trying out my first Kotlin native project … and now I have a problem when writing tests: I can't seem to access any of my test resources. Turns out, when I run
./gradlew nativeTest
the task
nativeTestProcessResources
is actually never executed. Why is that?
b
Because you cannot use resources from the "classpath" like on jvm, unfortunately.
h
Thank you. I guess I'll try to do a workaround with filenames then.