Talk in the GDG Ramos Mejía talking about how Kotlin changed the game for the Android developers and what's coming in the future of Android-Kotlin relationship. Video available at https://www.youtube.com/watch?v=R6joFowaMxY
Mockito.`when`(car.drive(Direction.NORTH)).thenReturn(Outcome.OK) // MockK val car = mockk<Car>() every { car.drive(Direction.NORTH) } returns Outcome.OK