19 lines
520 B
Java
Raw Normal View History

2016-04-15 23:47:32 +03:00
package com.baeldung;
import org.junit.gen5.api.Test;
import static org.junit.gen5.api.Assertions.assertEquals;
import static org.junit.gen5.api.Assertions.expectThrows;
public class ExceptionTest {
@Test
void shouldThrowException() {
2016-05-11 00:00:29 +03:00
Throwable exception = expectThrows(UnsupportedOperationException.class,
2016-05-23 06:14:18 -05:00
() -> {
throw new UnsupportedOperationException("Not supported");
});
2016-05-11 00:00:29 +03:00
assertEquals(exception.getMessage(), "Not supported");
2016-04-15 23:47:32 +03:00
}
}