Removed legacy code that wasn't being used.
[openflowjava.git] / third-party / openflow-codec / src / test / java / org / openflow / codec / protocol / OFPPActionTypeTest.java
diff --git a/third-party/openflow-codec/src/test/java/org/openflow/codec/protocol/OFPPActionTypeTest.java b/third-party/openflow-codec/src/test/java/org/openflow/codec/protocol/OFPPActionTypeTest.java
deleted file mode 100644 (file)
index 246b5f8..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-package org.openflow.codec.protocol;
-
-import org.junit.Test;
-import org.openflow.codec.protocol.action.OFPActionType;
-
-import junit.framework.TestCase;
-
-public class OFPPActionTypeTest extends TestCase {
-    @Test
-    public void testMapping() throws Exception {
-        TestCase.assertEquals(OFPActionType.OUTPUT, OFPActionType.valueOf((short) 0));
-        TestCase.assertEquals(OFPActionType.COPY_TTL_OUT, OFPActionType.valueOf((short) 11));
-        TestCase.assertEquals(OFPActionType.EXPERIMENTER, OFPActionType.valueOf((short) 0xffff));
-    }
-}