Hello! :wave: Is there a way to write parameterise...
# multiplatform
k
Hello! 👋 Is there a way to write parameterised tests with kotlin.test ?
👀 1
j
use kotest: https://kotest.io/ It works very nicely with kotlin.test and is multiplatform. I mainly use the assertions library that comes with it but it has facilities for parametrized tests as well.
2
🙏 1
k
Awesome. Thanks!