OpenApi add POST request to device root
[netconf.git] / netconf / netconf-netty-util / src / test / java / org / opendaylight / netconf / nettyutil / handler / EOMFramingMechanismEncoderTest.java
index b00de8ad5f0b9d8413b4865eb4117238a2d79c2e..bf3a2200e16b9615f368c2f714593311b8a219a1 100644 (file)
@@ -8,16 +8,16 @@
 
 package org.opendaylight.netconf.nettyutil.handler;
 
-import static org.junit.Assert.assertEquals;
+import static org.junit.jupiter.api.Assertions.assertEquals;
 
 import io.netty.buffer.ByteBuf;
 import io.netty.buffer.Unpooled;
-import org.junit.Test;
+import org.junit.jupiter.api.Test;
 
-public class EOMFramingMechanismEncoderTest {
+class EOMFramingMechanismEncoderTest {
 
     @Test
-    public void testEncode() throws Exception {
+    void testEncode() {
         final byte[] content = new byte[50];
         final ByteBuf source = Unpooled.wrappedBuffer(content);
         final ByteBuf destination = Unpooled.buffer();