Can I use KotlinTest with TestNG? I can see only JUnit in the documentation.
Does KotlinTest also support TestNG?
2.1k Views Asked by Klugi At
2
There are 2 best solutions below
2

The answer is no. KotlinTest is built on JUnit Platform, which is a basis to allow testing libraries to integrate with things like IntelliJ and gradle, without having to themselves write plugins.
As JUnit say themselves,
The JUnit Platform serves as a foundation for launching testing frameworks on the JVM
Yes, you can use TestNG with Kotlin. Just configure TestNG dependency and you are good to go. It is similar to Junit. Below is a sample program for the same: