how does one use data driven testing when using an...
# kotest
r
how does one use data driven testing when using annotations as ones testing style? https://kotest.io/docs/framework/datatesting/data-driven-testing.html
s
You can't, only with the DSL style
r
😞 that's annoying, oh well thanks for a quick and clear answer 🙂 I guess I need to figure what I do now/then is there some other way to do parameterized tests (to use the junit term)?
s
You could just do a for loop yourself, over a list of data classes.
Basically take the datatest module and just copy n paste it - it's really just a few lines.
r
fair, and true that is a fairly simple way