Good Morning / Good Afternoon. We are looking to d...
# testing
c
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
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.