So far I end up with the following class SimpleTe...
# announcements
j
So far I end up with the following class SimpleTest { lateinit var nr: java.lang.Integer @Before fun setUp() { this.nr = Integer(30) } @Test fun test() { negate(this.nr.toInt()) } fun negate(i: Int) = -i }