Hi, first question. What unit testing libs are you...
# library-development
h
Hi, first question. What unit testing libs are you using?
l
Hi @helpermethod I didn't work on libraries that really need unit testing for now because they are tied to the Android API, but I think there are good examples in several libraries by JetBrains (ktor, kotlinx.coroutines, kotlinx.serialization, etc) and other good Kotlin libraries that are unit tested on how to do it right, and you can see what they use.
h
👍
t
I use Junit 4 or 5 depending on how old the project is, and AssertJ. Tried spek and enjoyed it, but all my java stuff is in J4/5 + assertj so it just is mentally easier for me to keep track of one set that I like.