16 lines
405 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() {
Throwable exception = expectThrows(NullPointerException.class, null);
assertEquals(exception.getClass(), NullPointerException.class);
}
}