Em Java, o programador pode especificar as exceções esperadas para casos de teste JUnit como este:
@Test(expected = ArithmeticException.class)
public void omg()
{
int blackHole = 1 / 0;
}
Como eu faria isso em Kotlin? Eu tentei duas variações de sintaxe, mas nenhuma delas funcionou:
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
foi substituído por outro?Você pode usar
@Test(expected = ArithmeticException::class)
ou ainda melhor um dos métodos de biblioteca de Kotlin comofailsWith()
.Você pode torná-lo ainda mais curto usando genéricos reificados e um método auxiliar como este:
inline fun <reified T : Throwable> failsWithX(noinline block: () -> Any) { kotlin.test.failsWith(javaClass<T>(), block) }
E um exemplo usando a anotação:
@Test(expected = ArithmeticException::class) fun omg() { }
fonte
javaClass<T>()
está obsoleto agora. Use em seuMyException::class.java
lugar.Você pode usar o KotlinTest para isso.
Em seu teste, você pode encapsular código arbitrário com um bloco shouldThrow:
shouldThrow<ArithmeticException> { // code in here that you expect to throw a ArithmeticException }
fonte
JUnit5 possui suporte a 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 } } }
fonte
Cannot inline bytecode built with JVM target 1.8 into bytecode that is being built with JVM target 1.6
acessar assertThrows, certifique-se de que seu build.gradle tenhacompileTestKotlin { kotlinOptions.jvmTarget = "1.8" }
Você também pode usar genéricos com o pacote kotlin.test:
import kotlin.test.assertFailsWith @Test fun testFunction() { assertFailsWith<MyException> { // The code that will throw MyException } }
fonte
Assert extensão que verifica a classe de exceção e também se a mensagem de erro corresponde.
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 exemplo:
assertThrows<IllegalStateException>({ throw IllegalStateException("fake error message") }, "fake error message")
fonte
Ninguém mencionou que assertFailsWith () retorna o valor e você pode verificar os atributos de exceção:
@Test fun `my test`() { val exception = assertFailsWith<MyException> {method()} assertThat(exception.message, equalTo("oops!")) } }
fonte
Outra versão da sintaxe usando kluent :
@Test fun `should throw ArithmeticException`() { invoking { val backHole = 1 / 0 } `should throw` ArithmeticException::class }
fonte
As primeiras etapas são adicionar uma
(expected = YourException::class)
anotação de teste@Test(expected = YourException::class)
A segunda etapa é adicionar esta função
private fun throwException(): Boolean = throw YourException()
Finalmente, você terá algo assim:
@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()
fonte
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)
fonte