* PDF to X * PDF to X * Remove created doc * Code fixes and cleanup for PDF module * Fix web.xml in spring-mvc-web-vs-initializer project * Rollback web.xml * Fixes to PDF article * Merge with main eugen branch * Junit 5 * Fix name of test and modifier
27 lines
672 B
Java
27 lines
672 B
Java
package com.baeldung;
|
|
|
|
import static org.junit.jupiter.api.Assertions.assertEquals;
|
|
import static org.junit.jupiter.api.Assertions.assertThrows;
|
|
import static org.junit.jupiter.api.Assertions.expectThrows;
|
|
|
|
import org.junit.jupiter.api.Test;
|
|
|
|
public class ExceptionTest {
|
|
|
|
@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);
|
|
});
|
|
}
|
|
}
|