DEV Community

Discussion on: The Evolution of Assertions in Java Tests

Collapse
 
cjbrooks12 profile image
Casey Brooks

I love how Kotlin opens up an entirely new way to tackle these problems that have seemed so solved for years. I recently found a new Kotlin assertion library based entirely on using extension functions to create assertions that you might be interested in, Strikt. It's still an early project and the API is likely to change through iteration, but its already my favorite one out there and I'm using it in nearly all my projects

Collapse
 
martinhaeusler profile image
Martin Häusler

Nice one, I didn't know about Strikt before. Definitly looks interesting!