https://kotlinlang.org logo
Title
c

Chris Jobling

05/21/2021, 3:38 PM
Good Morning / Good Afternoon. We are looking to do end-to-end testing for our Kotlin microservices. We have previously used https://cucumber.io/docs/installation/kotlin/ and i am wondering if anyone has used any different tools/tech which could be of advantage to us. Thanks
m

Mykola Gurov

05/27/2021, 7:33 PM
JUnit + assertJ - work great for me with kotlin because of • named function params with defaults • DSL aka type-safe builders aka builders on steroids • extension functions The only thing I slightly miss from cucumber still is the table comparisons - that was powerful. Wouldn't personally recommend cucumber unless you do have non-tech people contributing to the specs maybe.