Fixed (de)serialization issue
[openflowplugin.git] / openflowplugin / src / test / java / org / opendaylight / openflowplugin / openflow / md / core / sal / SwitchFeaturesUtilTest.java
index db537b593666a400e3d004df26b50acc416332e9..a9592226bc826758dc4ec3f12add6546ec034eaa 100644 (file)
@@ -4,12 +4,12 @@
  * This program and the accompanying materials are made available under the
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
- */                                                     
+ */
 package org.opendaylight.openflowplugin.openflow.md.core.sal;
 
-import junit.framework.Assert;
 
 import org.junit.After;
+import org.junit.Assert;
 import org.junit.Before;
 import org.junit.Test;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.types.rev130731.Capabilities;
@@ -25,12 +25,12 @@ import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731
 public class SwitchFeaturesUtilTest {
 
     private GetFeaturesOutputBuilder featuresOutputBuilder;    
-    private SwitchFeaturesUtil swUtil; 
+    private SwitchFeaturesUtil swUtil;
     
     
     /**
      * initialization of {@link org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.GetFeaturesOutputBuilder GetFeaturesOutputBuilder}
-     * and {@link org.opendaylight.openflowplugin.openflow.md.core.sal.SwitchFeaturesUtil SwitchFeaturesUtil}
+     * and {@link SwitchFeaturesUtil SwitchFeaturesUtil}
      * @throws Exception
      */
     @Before
@@ -50,7 +50,7 @@ public class SwitchFeaturesUtilTest {
 
     /**
      * Test method for
-     * {@link org.opendaylight.openflowplugin.openflow.md.core.sal.SwitchFeaturesUtil#buildSwitchFeatures} for OF 1.0 version 
+     * {@link SwitchFeaturesUtil#buildSwitchFeatures} for OF 1.0 version
      * and switch feature capabilities
      * .
      */
@@ -64,7 +64,7 @@ public class SwitchFeaturesUtilTest {
     
     /**
      * Test method for
-     * {@link org.opendaylight.openflowplugin.openflow.md.core.sal.SwitchFeaturesUtil#buildSwitchFeatures} for OF 1.3 version 
+     * {@link SwitchFeaturesUtil#buildSwitchFeatures} for OF 1.3 version
      * and switch feature capabilities
      * .
      */
@@ -78,7 +78,7 @@ public class SwitchFeaturesUtilTest {
     
     /**
      * Test method for
-     * {@link org.opendaylight.openflowplugin.openflow.md.core.sal.SwitchFeaturesUtil#buildSwitchFeatures} for malformed switch feature capabilities
+     * {@link SwitchFeaturesUtil#buildSwitchFeatures} for malformed switch feature capabilities
      * - at least one feature is null
      * .
      */    
@@ -92,7 +92,7 @@ public class SwitchFeaturesUtilTest {
     
     /**
      * Test method for
-     * {@link org.opendaylight.openflowplugin.openflow.md.core.sal.SwitchFeaturesUtil#buildSwitchFeatures} for mismatch between
+     * {@link SwitchFeaturesUtil#buildSwitchFeatures} for mismatch between
      * version and switch feature capabilities
      * .
      */
@@ -106,7 +106,7 @@ public class SwitchFeaturesUtilTest {
     
     /**
      * Test method for
-     * {@link org.opendaylight.openflowplugin.openflow.md.core.sal.SwitchFeaturesUtil#buildSwitchFeatures} for nonexisting version
+     * {@link SwitchFeaturesUtil#buildSwitchFeatures} for nonexisting version
      * .
      */
     @Test