En Java, el programador puede especificar excepciones esperadas para casos de prueba JUnit como este:
@Test(expected = ArithmeticException.class)
public void omg()
{
int blackHole = 1 / 0;
}
¿Cómo haría esto en Kotlin? Probé dos variaciones de sintaxis, pero ninguna de ellas funcionó:
import org.junit.Test
// ...
@Test(expected = ArithmeticException) fun omg()
Please specify constructor invocation;
classifier 'ArithmeticException' does not have a companion object
@Test(expected = ArithmeticException.class) fun omg()
name expected ^
^ expected ')'
kotlin.test
sido reemplazado por algo más?