This message was deleted.
# community-support
s
This message was deleted.
j
Additionally, I know Gradle is recommending
fooTest
, but I think it is better to use
testFoo
in order to keep all
test
directories together, if not, the order can be ugly;
functionalTest
,
integrationTest
,
main
,
test
,
testFixtures
, instead of
main
,
test
,
testFixtures
,
testFunctional
,
testIntegration
With KMP using `fooTest`: •
commonIntegrationTest
commonMain
commonTest
jvmIntegrationTest
jvmMain
jvmTest
vs using `testFoo`: •
commonMain
commonTest
commonTestIntegration
jvmMain
jvmTest
jvmTestIntegration
p
I prefer the second option because it keeps tests closer to what they test
👍 1
Sorry I misread yesterday. My comment above is moot. Now my morning brain understands better 🙂
No strong opinion. I'm used to the Gradle convention and don't find it disturbing.
👍 1