does anybody know if I can configure kotest in a way that some tests are disabled but can still be executed by manually launching them in IDEA? (I want to use these kind of “manual tests” for running custom code fragments during development)
b
Big Chungus
04/14/2021, 9:31 PM
Why not just have multiple fun main() in test sourceSet instead?
p
Peter Ertl
04/14/2021, 9:36 PM
that would work but I would like some kind of namespacing and keyword “namespace” does not yet exist in kotlin … also having multiple main()s in one file will cause a collision and I am looking for some alternative.
Peter Ertl
04/14/2021, 9:37 PM
the namespace should primarily give an idea what the snippet is supposed to do , e.g. ” fun createCustomerInDevelopDatabaseAndCheckIt()” would be a sample