X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=common%2Fconcepts%2Fsrc%2Ftest%2Fjava%2Forg%2Fopendaylight%2Fyangtools%2Fconcepts%2FCheckedValueTest.java;h=9ebaee5ef5afc61b3abc4e1c6672312089b961e1;hb=fe9e3e1b7804c6d5e63409a0bf1cb1480a4c8899;hp=237b9334f3a3284a02a08450e0a4799c5aa876ae;hpb=0f76c985c8c735509bacdd28c4dfa7e58a493a9d;p=yangtools.git diff --git a/common/concepts/src/test/java/org/opendaylight/yangtools/concepts/CheckedValueTest.java b/common/concepts/src/test/java/org/opendaylight/yangtools/concepts/CheckedValueTest.java index 237b9334f3..9ebaee5ef5 100644 --- a/common/concepts/src/test/java/org/opendaylight/yangtools/concepts/CheckedValueTest.java +++ b/common/concepts/src/test/java/org/opendaylight/yangtools/concepts/CheckedValueTest.java @@ -7,11 +7,11 @@ */ package org.opendaylight.yangtools.concepts; -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertFalse; -import static org.junit.Assert.assertSame; -import static org.junit.Assert.assertThrows; -import static org.junit.Assert.assertTrue; +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertFalse; +import static org.junit.jupiter.api.Assertions.assertSame; +import static org.junit.jupiter.api.Assertions.assertThrows; +import static org.junit.jupiter.api.Assertions.assertTrue; import static org.mockito.ArgumentMatchers.any; import static org.mockito.Mockito.doNothing; import static org.mockito.Mockito.doReturn; @@ -22,7 +22,7 @@ import static org.mockito.Mockito.verifyNoInteractions; import java.util.function.Consumer; import java.util.function.Function; import java.util.function.Supplier; -import org.junit.Test; +import org.junit.jupiter.api.Test; public class CheckedValueTest { @Test