I am converting some tests from Java to Kotlin. For Java tests, I use the AssertJ library, which is very powerful and has a rich set of statements. My problem is that for Kotlin tests I cannot use AssertJ and Kotlin JUnit ( org.jetbrains.kotlin:kotlin-test-junit) has a very limited set of statements.
Is there a Kotlin equivalent for AssertJ or a better way for claims?
I found the Kluent library , but I'm still not sure if this is the best library to use.
source
share