Hi there, What are the advantages pf `kotest` ove...
# kotest
a
Hi there, What are the advantages pf
kotest
over plain
junit
? I'm looking at the docs, and it seems a bit bloated to me. For instance, what's the point of
Copy code
Use over 300 provided matchers to test assertions on many different types:

"substring".shouldContain("str")

(snip)
cityMap.shouldContainKey("London")
when I can just use trivial methods from standard library:
Copy code
assertTrue("London" in cityMap)
assertTrue("substring".contains("str"))
these matchers seem so trivial. What am I missing?
😂 1