Fix checkstyle violations in openflow-protocol-impl - part 12
[openflowplugin.git] / openflowjava / openflow-protocol-impl / src / test / java / org / opendaylight / openflowjava / protocol / impl / serialization / factories / OF10HelloInputMessageFactoryTest.java
index b7ed855b8cb2a64c71f3a63d1c7d9d8ec1122475..c5ef3fef2a72f3a349b5a16568227cd0b3014c9f 100644 (file)
@@ -10,21 +10,21 @@ package org.opendaylight.openflowjava.protocol.impl.serialization.factories;
 
 import io.netty.buffer.ByteBuf;
 import io.netty.buffer.UnpooledByteBufAllocator;
-
 import org.junit.Before;
 import org.junit.Test;
 import org.opendaylight.openflowjava.protocol.api.extensibility.OFSerializer;
 import org.opendaylight.openflowjava.protocol.api.extensibility.SerializerRegistry;
 import org.opendaylight.openflowjava.protocol.api.keys.MessageTypeKey;
+import org.opendaylight.openflowjava.protocol.api.util.EncodeConstants;
 import org.opendaylight.openflowjava.protocol.impl.serialization.SerializerRegistryImpl;
 import org.opendaylight.openflowjava.protocol.impl.util.BufferHelper;
-import org.opendaylight.openflowjava.protocol.api.util.EncodeConstants;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.HelloInput;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.HelloInputBuilder;
 
 /**
- * @author michal.polkorab
+ * Unit tests for OF10HelloInputMessageFactory.
  *
+ * @author michal.polkorab
  */
 public class OF10HelloInputMessageFactoryTest {
 
@@ -32,7 +32,7 @@ public class OF10HelloInputMessageFactoryTest {
     private OFSerializer<HelloInput> helloFactory;
 
     /**
-     * Initializes serializer registry and stores correct factory in field
+     * Initializes serializer registry and stores correct factory in field.
      */
     @Before
     public void startUp() {
@@ -43,8 +43,7 @@ public class OF10HelloInputMessageFactoryTest {
     }
 
     /**
-     * Testing of {@link OF10HelloInputMessageFactory} for correct translation from POJO
-     * @throws Exception
+     * Testing of {@link OF10HelloInputMessageFactory} for correct translation from POJO.
      */
     @Test
     public void testWithoutElementsSet() throws Exception {