Cory Thomas
Cory Thomas
Given this example ```kotlin class Foo { val bar: Map = mapOf("biz" to mapOf("a" to 1)) } @Test fun x() { expectThat(Foo()) { with({ bar }) { getValue("biz").isA().and { hasEntry("a",...
When an error occurs, cover should set the process exit code to something other than zero. This allows calling tools to detect a test failure. At the moment, if a...
Use a lambda to lazily render the subject description only when the test fails. This significantly speeds up the test execution. In particular, this can really help property based tests...
I am getting the following error in the IDE. I am not sure the sequence of events that lead to it or how to reproduce consistently though. As far as...