Enable checkstyle in yang-model-util
[yangtools.git] / yang / yang-model-util / src / test / java / org / opendaylight / yangtools / yang / model / util / BinaryTypeTest.java
index 146cb48191dd6b9099188149da2977dbebba8388..52063b4b88fe7e521a1e5299ef658a45da0457b4 100644 (file)
@@ -12,6 +12,7 @@ import static org.junit.Assert.assertFalse;
 import static org.junit.Assert.assertNull;
 import static org.junit.Assert.assertTrue;
 import static org.opendaylight.yangtools.yang.model.util.type.BaseTypes.binaryType;
+
 import java.util.Collections;
 import org.junit.Test;
 import org.opendaylight.yangtools.yang.model.api.Status;
@@ -21,8 +22,8 @@ public class BinaryTypeTest {
 
     @Test
     public void canCreateBinaryType() {
-        BinaryTypeDefinition binType = binaryType();
-        BinaryTypeDefinition binType1 = binaryType();
+        final BinaryTypeDefinition binType = binaryType();
+        final BinaryTypeDefinition binType1 = binaryType();
 
         assertEquals(0, binType.getLengthConstraints().size());
         assertNull(binType.getDefaultValue());
@@ -42,4 +43,4 @@ public class BinaryTypeTest {
         assertFalse("binType shouldn't equal to object of other type", binType.equals("str"));
     }
 
-}
\ No newline at end of file
+}