Fix CS warnings in sal-clustering-commons and enable enforcement
[controller.git] / opendaylight / md-sal / sal-clustering-commons / src / test / java / org / opendaylight / controller / cluster / datastore / node / utils / NodeIdentifierFactoryTest.java
index d9ad69e54824b9b78bdd58ece74c45c15aa44768..3f5ecc68f0cabc934db345ed4441d53a6424b4ed 100644 (file)
@@ -9,20 +9,19 @@
 package org.opendaylight.controller.cluster.datastore.node.utils;
 
 import static org.junit.Assert.assertTrue;
+
 import org.junit.Test;
 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
 
 public class NodeIdentifierFactoryTest {
 
-  @Test
-  public void validateAugmentationIdentifier() {
-    YangInstanceIdentifier.PathArgument argument =
-        NodeIdentifierFactory
-            .getArgument("AugmentationIdentifier{childNames=[(urn:opendaylight:flow:table:statistics?revision=2013-12-15)flow-table-statistics]}");
-
-    assertTrue(argument instanceof YangInstanceIdentifier.AugmentationIdentifier);
-
+    @Test
+    public void validateAugmentationIdentifier() {
+        YangInstanceIdentifier.PathArgument argument = NodeIdentifierFactory.getArgument(
+                "AugmentationIdentifier{childNames=[(urn:opendaylight:flow:table:statistics?revision=2013-12-15)"
+                + "flow-table-statistics]}");
 
-  }
+        assertTrue(argument instanceof YangInstanceIdentifier.AugmentationIdentifier);
 
+    }
 }