Does kotest support manual test registration - so ...
# kotest
r
Does kotest support manual test registration - so not using any reflection based discovery? If anyone has an example of setting that up on the JVM using gradle that would be very useful.
s
You can launch kotest manually if that would work for you ?
Kinda like
Copy code
KotestEngineLauncher()
   .withSpecs(result.specs)
   .withListener(....)
   .launch()
r
Thanks, just need to work out how to integrate that nicely with gradle test & reporting and everything.