W Javie programista może określić oczekiwane wyjątki dla przypadków testowych JUnit w następujący sposób:
@Test(expected = ArithmeticException.class)
public void omg()
{
int blackHole = 1 / 0;
}
Jak bym to zrobił w Kotlinie? Próbowałem dwóch odmian składni, ale żadna z nich nie działała:
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
został zastąpiony przez coś innego?Możesz użyć
@Test(expected = ArithmeticException::class)
lub nawet lepiej jednej z metod bibliotecznych Kotlin, takich jakfailsWith()
.Możesz go jeszcze skrócić, używając reified generics i metody pomocniczej, takiej jak ta:
inline fun <reified T : Throwable> failsWithX(noinline block: () -> Any) { kotlin.test.failsWith(javaClass<T>(), block) }
I przykład z użyciem adnotacji:
@Test(expected = ArithmeticException::class) fun omg() { }
źródło
javaClass<T>()
jest teraz przestarzała. UżyjMyException::class.java
zamiast tego.Możesz do tego użyć KotlinTest .
W swoim teście możesz otoczyć dowolny kod blokiem shouldThrow:
shouldThrow<ArithmeticException> { // code in here that you expect to throw a ArithmeticException }
źródło
JUnit5 ma wbudowaną obsługę kotlin .
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 } } }
źródło
Cannot inline bytecode built with JVM target 1.8 into bytecode that is being built with JVM target 1.6
na assertThrows, upewnij się, że Twój build.gradle macompileTestKotlin { kotlinOptions.jvmTarget = "1.8" }
Możesz także używać typów generycznych z pakietem kotlin.test:
import kotlin.test.assertFailsWith @Test fun testFunction() { assertFailsWith<MyException> { // The code that will throw MyException } }
źródło
Assert rozszerzenie, które weryfikuje klasę wyjątku, a także, jeśli komunikat o błędzie jest zgodny.
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}")
}
na przykład:
assertThrows<IllegalStateException>({ throw IllegalStateException("fake error message") }, "fake error message")
źródło
Nikt nie wspomniał, że assertFailsWith () zwraca wartość i możesz sprawdzić atrybuty wyjątku:
@Test fun `my test`() { val exception = assertFailsWith<MyException> {method()} assertThat(exception.message, equalTo("oops!")) } }
źródło
Inna wersja składni używająca kluent :
@Test fun `should throw ArithmeticException`() { invoking { val backHole = 1 / 0 } `should throw` ArithmeticException::class }
źródło
Pierwszym krokiem jest dodanie
(expected = YourException::class)
adnotacji testowej@Test(expected = YourException::class)
Drugim krokiem jest dodanie tej funkcji
private fun throwException(): Boolean = throw YourException()
W końcu będziesz miał coś takiego:
@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()
źródło
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)
źródło