Fix fileEncoding violations for checkstyle
[groupbasedpolicy.git] / renderers / iovisor / src / test / java / org / opendaylight / groupbasedpolicy / renderer / iovisor / sf / SubjectFeaturesTest.java
index 743ca9e8af6fda7b88a513d51717c88727d2ee3f..a3d0bab71800c2c9d7367bc3a6b9de2d5b190cf3 100755 (executable)
@@ -1,41 +1,41 @@
-/*\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.renderer.iovisor.sf;\r
-\r
-import static junit.framework.Assert.assertEquals;\r
-import static org.junit.Assert.assertNotNull;\r
-\r
-import org.junit.Assert;\r
-import org.junit.Test;\r
-import org.opendaylight.groupbasedpolicy.api.sf.AllowActionDefinition;\r
-import org.opendaylight.groupbasedpolicy.api.sf.EtherTypeClassifierDefinition;\r
-import org.opendaylight.groupbasedpolicy.api.sf.IpProtoClassifierDefinition;\r
-import org.opendaylight.groupbasedpolicy.api.sf.L4ClassifierDefinition;\r
-\r
-public class SubjectFeaturesTest {\r
-\r
-    @Test\r
-    public void testGetClassifier() {\r
-        assertEquals(Classifier.ETHER_TYPE_CL, SubjectFeatures.getClassifier(EtherTypeClassifierDefinition.ID));\r
-        assertEquals(Classifier.IP_PROTO_CL, SubjectFeatures.getClassifier(IpProtoClassifierDefinition.ID));\r
-        assertEquals(Classifier.L4_CL, SubjectFeatures.getClassifier(L4ClassifierDefinition.ID));\r
-    }\r
-\r
-    @Test\r
-    public void testGetActions() {\r
-        assertNotNull(SubjectFeatures.getActions());\r
-    }\r
-\r
-    @Test\r
-    public void testGetAction() {\r
-        Assert.assertEquals(AllowActionDefinition.DEFINITION,\r
-                SubjectFeatures.getAction(AllowActionDefinition.ID).getActionDef());\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.iovisor.sf;
+
+import static junit.framework.Assert.assertEquals;
+import static org.junit.Assert.assertNotNull;
+
+import org.junit.Assert;
+import org.junit.Test;
+import org.opendaylight.groupbasedpolicy.api.sf.AllowActionDefinition;
+import org.opendaylight.groupbasedpolicy.api.sf.EtherTypeClassifierDefinition;
+import org.opendaylight.groupbasedpolicy.api.sf.IpProtoClassifierDefinition;
+import org.opendaylight.groupbasedpolicy.api.sf.L4ClassifierDefinition;
+
+public class SubjectFeaturesTest {
+
+    @Test
+    public void testGetClassifier() {
+        assertEquals(Classifier.ETHER_TYPE_CL, SubjectFeatures.getClassifier(EtherTypeClassifierDefinition.ID));
+        assertEquals(Classifier.IP_PROTO_CL, SubjectFeatures.getClassifier(IpProtoClassifierDefinition.ID));
+        assertEquals(Classifier.L4_CL, SubjectFeatures.getClassifier(L4ClassifierDefinition.ID));
+    }
+
+    @Test
+    public void testGetActions() {
+        assertNotNull(SubjectFeatures.getActions());
+    }
+
+    @Test
+    public void testGetAction() {
+        Assert.assertEquals(AllowActionDefinition.DEFINITION,
+                SubjectFeatures.getAction(AllowActionDefinition.ID).getActionDef());
+    }
+
+}