Alex Kuznetsov
06/10/2020, 7:00 PMkotest
over plain junit
? I'm looking at the docs, and it seems a bit bloated to me. For instance, what's the point of
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:
assertTrue("London" in cityMap)
assertTrue("substring".contains("str"))
these matchers seem so trivial. What am I missing?