2016-04-15 23:47:32 +03:00
|
|
|
package com.baeldung;
|
|
|
|
|
|
|
|
import org.junit.gen5.api.Test;
|
|
|
|
|
2016-05-02 13:00:21 +03:00
|
|
|
import java.util.ArrayList;
|
|
|
|
|
2016-04-15 23:47:32 +03:00
|
|
|
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,
|
|
|
|
() -> {throw new UnsupportedOperationException("Not supported");});
|
|
|
|
assertEquals(exception.getMessage(), "Not supported");
|
2016-04-15 23:47:32 +03:00
|
|
|
}
|
|
|
|
}
|