Fix fileEncoding violations for checkstyle
[groupbasedpolicy.git] / renderers / ofoverlay / src / test / java / org / opendaylight / groupbasedpolicy / renderer / ofoverlay / statistics / flowcache / FlowCacheKeysBuilderTest.java
index 6227e095229c479be72cfab4ae3cae090a7596fd..7c66567e8cfa13ab654315431fe884a19c637e19 100755 (executable)
@@ -1,80 +1,80 @@
-/*\r
- * Copyright (c) 2016 Cisco Systems, Inc. and others.  All rights reserved.\r
- *\r
- * This program and the accompanying materials are made available under the\r
- * terms of the Eclipse Public License v1.0 which accompanies this distribution,\r
- * and is available at http://www.eclipse.org/legal/epl-v10.html\r
- */\r
-package org.opendaylight.groupbasedpolicy.renderer.ofoverlay.statistics.flowcache;\r
-\r
-import static org.junit.Assert.assertEquals;\r
-import static org.junit.Assert.assertFalse;\r
-import static org.junit.Assert.assertNotNull;\r
-import static org.junit.Assert.assertTrue;\r
-import static org.junit.Assert.fail;\r
-\r
-import java.util.ArrayList;\r
-import java.util.List;\r
-\r
-import org.junit.Before;\r
-import org.junit.Test;\r
-\r
-public class FlowCacheKeysBuilderTest {\r
-\r
-    private static final String VALUE_1 = "value_1";\r
-    private static final String VALUE_2 = "value_2";\r
-    private static final String VALUE_3 = "value_3";\r
-    private static final List<String> LIST = new ArrayList<>();\r
-\r
-    private FlowCacheKeys.FlowCacheKeysBuilder builder;\r
-\r
-    @Before\r
-    public void init() {\r
-        builder = new FlowCacheKeys.FlowCacheKeysBuilder();\r
-        LIST.add(VALUE_1);\r
-        LIST.add(VALUE_2);\r
-    }\r
-\r
-    @Test\r
-    public void testConstructor() {\r
-        FlowCacheKeys.FlowCacheKeysBuilder b = null;\r
-        try {\r
-            b = new FlowCacheKeys.FlowCacheKeysBuilder();\r
-        } catch (Exception e) {\r
-            fail("Exception thrown: " + e.getMessage());\r
-        }\r
-        assertNotNull(b);\r
-        assertNotNull(b.getValues());\r
-        assertTrue(b.getValues().isEmpty());\r
-    }\r
-\r
-    @Test\r
-    public void testSetValues() {\r
-        builder.setValues(LIST);\r
-\r
-        assertFalse(builder.getValues().isEmpty());\r
-        assertEquals(LIST.size(), builder.getValues().size());\r
-        assertEquals(LIST.get(0), builder.getValues().get(0));\r
-    }\r
-\r
-    @Test\r
-    public void testAddValue() {\r
-        builder.setValues(LIST);\r
-        int expectedSize = LIST.size() + 1;\r
-\r
-        builder.addValue(VALUE_3);\r
-\r
-        assertEquals(expectedSize, builder.getValues().size());\r
-    }\r
-\r
-    @Test\r
-    public void testBuild() {\r
-        builder.setValues(LIST);\r
-\r
-        FlowCacheKeys keys = builder.build();\r
-\r
-        assertTrue(keys.getValue().contains(VALUE_1));\r
-        assertTrue(keys.getValue().contains(VALUE_2));\r
-    }\r
-\r
-}\r
+/*
+ * Copyright (c) 2016 Cisco Systems, Inc. and others.  All rights reserved.
+ *
+ * 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.groupbasedpolicy.renderer.ofoverlay.statistics.flowcache;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertFalse;
+import static org.junit.Assert.assertNotNull;
+import static org.junit.Assert.assertTrue;
+import static org.junit.Assert.fail;
+
+import java.util.ArrayList;
+import java.util.List;
+
+import org.junit.Before;
+import org.junit.Test;
+
+public class FlowCacheKeysBuilderTest {
+
+    private static final String VALUE_1 = "value_1";
+    private static final String VALUE_2 = "value_2";
+    private static final String VALUE_3 = "value_3";
+    private static final List<String> LIST = new ArrayList<>();
+
+    private FlowCacheKeys.FlowCacheKeysBuilder builder;
+
+    @Before
+    public void init() {
+        builder = new FlowCacheKeys.FlowCacheKeysBuilder();
+        LIST.add(VALUE_1);
+        LIST.add(VALUE_2);
+    }
+
+    @Test
+    public void testConstructor() {
+        FlowCacheKeys.FlowCacheKeysBuilder b = null;
+        try {
+            b = new FlowCacheKeys.FlowCacheKeysBuilder();
+        } catch (Exception e) {
+            fail("Exception thrown: " + e.getMessage());
+        }
+        assertNotNull(b);
+        assertNotNull(b.getValues());
+        assertTrue(b.getValues().isEmpty());
+    }
+
+    @Test
+    public void testSetValues() {
+        builder.setValues(LIST);
+
+        assertFalse(builder.getValues().isEmpty());
+        assertEquals(LIST.size(), builder.getValues().size());
+        assertEquals(LIST.get(0), builder.getValues().get(0));
+    }
+
+    @Test
+    public void testAddValue() {
+        builder.setValues(LIST);
+        int expectedSize = LIST.size() + 1;
+
+        builder.addValue(VALUE_3);
+
+        assertEquals(expectedSize, builder.getValues().size());
+    }
+
+    @Test
+    public void testBuild() {
+        builder.setValues(LIST);
+
+        FlowCacheKeys keys = builder.build();
+
+        assertTrue(keys.getValue().contains(VALUE_1));
+        assertTrue(keys.getValue().contains(VALUE_2));
+    }
+
+}