Alowaniak
05/23/2018, 12:51 PMAllan Wang
05/23/2018, 6:21 PMAlowaniak
05/23/2018, 6:59 PMuseJUnitPlatform
that's on the kotlintest readme.
If I just only have the StringSpec example and turn on 'testLogging { events("PASSED", "SKIPPED", "FAILED") }` (it's with gradle kotlin dsl) and then execute gradlew cleanTest test
it will show both tests as PASSED
in the console, then if I modify a test so it should fail e.g. do "hello".length shouldBe 6
instead of shouldBe 5
then it shows up as SKIPPED
and build is still SUCCESSFULL
sam
07/17/2018, 7:28 PM