Sergio Crespo Toubes
val item = turbineState.awaitItem() item.showProgress.shouldBe(false) item.selectedItem.shouldBe(-1) item.filteredLocations.count().shouldBe(2)
turbineState.awaitItem().should { !it.showProgress && it.selectedItem == -1 && it.filteredLocations.count() == 2 }
Emil Kantis
turbineState.awaitItem().should { it.showProgress shouldBe false it.selectedItem shouldBe -1 it.filteredLocations shouldHaveSize 2 }
Davio
assertSoftly(item) { showProgress shouldBe false..etc }
A modern programming language that makes developers happier.