From: Robert Varga Date: Mon, 25 Apr 2022 19:46:21 +0000 (+0200) Subject: Modernize NotificationListenerInvokerTest X-Git-Tag: v10.0.0~100 X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=mdsal.git;a=commitdiff_plain;h=e2696ea3b63a1ab7d7794ec021aa6f1da3611305 Modernize NotificationListenerInvokerTest Improve assertions and use assertThrows(). Change-Id: Iee3847231e97a1e755559b13eb54b57fbf67c853 Signed-off-by: Robert Varga --- diff --git a/binding/mdsal-binding-dom-adapter/src/test/java/org/opendaylight/mdsal/binding/dom/adapter/invoke/NotificationListenerInvokerTest.java b/binding/mdsal-binding-dom-adapter/src/test/java/org/opendaylight/mdsal/binding/dom/adapter/invoke/NotificationListenerInvokerTest.java index e8936f9182..bd3a0e2fb6 100644 --- a/binding/mdsal-binding-dom-adapter/src/test/java/org/opendaylight/mdsal/binding/dom/adapter/invoke/NotificationListenerInvokerTest.java +++ b/binding/mdsal-binding-dom-adapter/src/test/java/org/opendaylight/mdsal/binding/dom/adapter/invoke/NotificationListenerInvokerTest.java @@ -7,8 +7,11 @@ */ package org.opendaylight.mdsal.binding.dom.adapter.invoke; +import static org.hamcrest.CoreMatchers.instanceOf; +import static org.hamcrest.MatcherAssert.assertThat; +import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNotNull; -import static org.junit.Assert.fail; +import static org.junit.Assert.assertThrows; import static org.mockito.Mockito.mock; import com.google.common.collect.ImmutableMap; @@ -23,32 +26,31 @@ import org.opendaylight.yangtools.yang.binding.NotificationListener; import org.opendaylight.yangtools.yang.common.QName; public class NotificationListenerInvokerTest { - @Test public void fromTest() throws Exception { assertNotNull(NotificationListenerInvoker.from(TestInterface.class)); } - @Test(expected = IllegalStateException.class) - @SuppressWarnings({ "checkstyle:illegalThrows", "checkstyle:avoidHidingCauseException" }) - public void fromWithExceptionTest() throws Throwable { - try { - NotificationListenerInvoker.from(TestPrivateInterface.class); - fail("Expected IllegalAccessException"); - } catch (UncheckedExecutionException e) { - throw e.getCause(); - } + @Test + public void fromWithExceptionTest() { + final var cause = assertThrows(UncheckedExecutionException.class, + () -> NotificationListenerInvoker.from(TestPrivateInterface.class)) + .getCause(); + assertThat(cause, instanceOf(IllegalStateException.class)); + assertThat(cause.getCause(), instanceOf(IllegalAccessException.class)); } - @Test(expected = WrongMethodTypeException.class) - public void invokeNotification() throws Exception { + @Test + public void invokeNotification() { final NotificationListener notificationListener = mock(NotificationListener.class); final MethodHandle methodHandle = mock(MethodHandle.class); final NotificationListenerInvoker notificationListenerInvoker = new NotificationListenerInvoker(ImmutableMap.of(QName.create("test", "test"), methodHandle)); - notificationListenerInvoker.invokeNotification(notificationListener, QName.create("test", "test"), null); - fail("Expected WrongMethodTypeException, no method to invoke is supplied"); + final var ex = assertThrows(WrongMethodTypeException.class, + () -> notificationListenerInvoker.invokeNotification(notificationListener, QName.create("test", "test"), + null)); + assertEquals("expected null but found (NotificationListener,DataContainer)void", ex.getMessage()); } public interface TestInterface extends NotificationListener, Augmentation {