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?Puede usar
@Test(expected = ArithmeticException::class)
o incluso mejor uno de los métodos de biblioteca de Kotlin comofailsWith()
.Puede acortarlo aún más utilizando genéricos reificados y un método auxiliar como este:
inline fun <reified T : Throwable> failsWithX(noinline block: () -> Any) { kotlin.test.failsWith(javaClass<T>(), block) }
Y ejemplo usando la anotación:
@Test(expected = ArithmeticException::class) fun omg() { }
fuente
javaClass<T>()
ahora está en desuso. Úselo en suMyException::class.java
lugar.Puede usar KotlinTest para esto.
En su prueba, puede envolver código arbitrario con un bloque shouldThrow:
shouldThrow<ArithmeticException> { // code in here that you expect to throw a ArithmeticException }
fuente
JUnit5 tiene soporte kotlin integrado.
import org.junit.jupiter.api.Test import org.junit.jupiter.api.assertThrows class MyTests { @Test fun `division by zero -- should throw ArithmeticException`() { assertThrows<ArithmeticException> { 1 / 0 } } }
fuente
Cannot inline bytecode built with JVM target 1.8 into bytecode that is being built with JVM target 1.6
subes a assertThrows, asegúrate de que tu build.gradle tengacompileTestKotlin { kotlinOptions.jvmTarget = "1.8" }
También puede usar genéricos con el paquete kotlin.test:
import kotlin.test.assertFailsWith @Test fun testFunction() { assertFailsWith<MyException> { // The code that will throw MyException } }
fuente
Afirmar la extensión que verifica la clase de excepción y también si el mensaje de error coincide.
inline fun <reified T : Exception> assertThrows(runnable: () -> Any?, message: String?) { try { runnable.invoke() } catch (e: Throwable) { if (e is T) { message?.let { Assert.assertEquals(it, "${e.message}") } return } Assert.fail("expected ${T::class.qualifiedName} but caught " + "${e::class.qualifiedName} instead") } Assert.fail("expected ${T::class.qualifiedName}")
}
por ejemplo:
assertThrows<IllegalStateException>({ throw IllegalStateException("fake error message") }, "fake error message")
fuente
Nadie mencionó que assertFailsWith () devuelve el valor y puede verificar los atributos de excepción:
@Test fun `my test`() { val exception = assertFailsWith<MyException> {method()} assertThat(exception.message, equalTo("oops!")) } }
fuente
Otra versión de sintaxis usando kluent :
@Test fun `should throw ArithmeticException`() { invoking { val backHole = 1 / 0 } `should throw` ArithmeticException::class }
fuente
Los primeros pasos son agregar
(expected = YourException::class)
una anotación de prueba@Test(expected = YourException::class)
El segundo paso es agregar esta función
private fun throwException(): Boolean = throw YourException()
Finalmente tendrás algo como esto:
@Test(expected = ArithmeticException::class) fun `get query error from assets`() { //Given val error = "ArithmeticException" //When throwException() val result = omg() //Then Assert.assertEquals(result, error) } private fun throwException(): Boolean = throw ArithmeticException()
fuente
org.junit.jupiter.api.Assertions.kt
/** * Example usage: * ```kotlin * val exception = assertThrows<IllegalArgumentException>("Should throw an Exception") { * throw IllegalArgumentException("Talk to a duck") * } * assertEquals("Talk to a duck", exception.message) * ``` * @see Assertions.assertThrows */ inline fun <reified T : Throwable> assertThrows(message: String, noinline executable: () -> Unit): T = assertThrows({ message }, executable)
fuente