2016-04-15 23:47:32 +03:00
|
|
|
package com.baeldung;
|
|
|
|
|
2016-11-14 09:45:01 +01:00
|
|
|
import static org.junit.jupiter.api.Assertions.assertEquals;
|
|
|
|
import static org.junit.jupiter.api.Assertions.assertThrows;
|
|
|
|
import static org.junit.jupiter.api.Assertions.expectThrows;
|
2016-04-15 23:47:32 +03:00
|
|
|
|
2016-11-14 09:45:01 +01:00
|
|
|
import org.junit.jupiter.api.Test;
|
2016-04-15 23:47:32 +03:00
|
|
|
|
|
|
|
public class ExceptionTest {
|
|
|
|
|
2016-11-14 09:45:01 +01:00
|
|
|
@Test
|
|
|
|
void shouldThrowException() {
|
|
|
|
Throwable exception = expectThrows(UnsupportedOperationException.class, () -> {
|
|
|
|
throw new UnsupportedOperationException("Not supported");
|
|
|
|
});
|
|
|
|
assertEquals(exception.getMessage(), "Not supported");
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
void assertThrowsException() {
|
|
|
|
String str = null;
|
|
|
|
assertThrows(IllegalArgumentException.class, () -> {
|
|
|
|
Integer.valueOf(str);
|
|
|
|
});
|
|
|
|
}
|
2016-04-15 23:47:32 +03:00
|
|
|
}
|