Hello, are parameterized tests supported in kotlin...
# test
d
Hello, are parameterized tests supported in kotlin-test? And if not, are there plans to support it?
c
They are not supported in multiplatform. If you are using JVM only, you can use JUnit4 or JUnit5 annotations without issues. If you are using Multiplatform, there are open issues for parametrization tests, but no concrete plans so far. You will have more luck using Kotest (#CT0G9SD7Z) or Prepared (#C078Z1QRHL3).
d
👍Thanks