Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 394 Bytes

Preview.md

File metadata and controls

13 lines (11 loc) · 394 Bytes

Logo testmints

Testmints is a low-cal solution to bring a tiny bit of sugar to your Kotlin Multiplatform tests.

@Test
fun plusOne() = setup(object {
    val input: Int = Random.nextInt()
    val expected = input + 1
}) exercise {
    input.plusOne()
} verify { result ->
    assertEquals(expected, result)
}