Fix fileEncoding violations for checkstyle
[groupbasedpolicy.git] / neutron-vpp-mapper / src / test / java / org / opendaylight / groupbasedpolicy / neutron / vpp / mapper / util / HostconfigUtilTest.java
index dc32d35cf6d47310fb6ff88716f31a28045d3a87..f70c81d6c1d29bff462c09f24269b33f0e34c74d 100644 (file)
@@ -1,36 +1,36 @@
-/*\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
-\r
-package org.opendaylight.groupbasedpolicy.neutron.vpp.mapper.util;\r
-\r
-import static org.junit.Assert.assertEquals;\r
-import static org.junit.Assert.assertTrue;\r
-\r
-import org.junit.Test;\r
-import org.opendaylight.groupbasedpolicy.neutron.vpp.mapper.SocketInfo;\r
-import org.opendaylight.yang.gen.v1.urn.opendaylight.neutron.hostconfig.rev150712.hostconfig.attributes.hostconfigs.Hostconfig;\r
-import org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.network.topology.rev131021.NodeId;\r
-\r
-\r
-public class HostconfigUtilTest {\r
-\r
-    private final NodeId NODE_ID = new NodeId("node1");\r
-    private final String HOST_TYPE = "ODL L2";\r
-    private final String PATH = "/tmp/";\r
-    private final String PREFIX = "socket_";\r
-    private final String VHOSTUSER = "vhostuser";\r
-\r
-    @Test\r
-    public void createHostconfigsDataForTest() {\r
-        Hostconfig hc = HostconfigUtil.createHostconfigsDataFor(NODE_ID, new SocketInfo(PATH, PREFIX));\r
-        assertEquals(hc.getHostId(), NODE_ID.getValue());\r
-        assertEquals(hc.getHostType(), HOST_TYPE);\r
-        assertTrue(hc.getConfig().contains(PATH));\r
-        assertTrue(hc.getConfig().contains(VHOSTUSER));\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.neutron.vpp.mapper.util;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertTrue;
+
+import org.junit.Test;
+import org.opendaylight.groupbasedpolicy.neutron.vpp.mapper.SocketInfo;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.neutron.hostconfig.rev150712.hostconfig.attributes.hostconfigs.Hostconfig;
+import org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.network.topology.rev131021.NodeId;
+
+
+public class HostconfigUtilTest {
+
+    private final NodeId NODE_ID = new NodeId("node1");
+    private final String HOST_TYPE = "ODL L2";
+    private final String PATH = "/tmp/";
+    private final String PREFIX = "socket_";
+    private final String VHOSTUSER = "vhostuser";
+
+    @Test
+    public void createHostconfigsDataForTest() {
+        Hostconfig hc = HostconfigUtil.createHostconfigsDataFor(NODE_ID, new SocketInfo(PATH, PREFIX));
+        assertEquals(hc.getHostId(), NODE_ID.getValue());
+        assertEquals(hc.getHostType(), HOST_TYPE);
+        assertTrue(hc.getConfig().contains(PATH));
+        assertTrue(hc.getConfig().contains(VHOSTUSER));
+    }
+}