Removed legacy code that wasn't being used.
[openflowjava.git] / third-party / openflow-codec / src / test / java / org / openflow / codec / protocol / queue / OFPQueuePropertyTypeTest.java
diff --git a/third-party/openflow-codec/src/test/java/org/openflow/codec/protocol/queue/OFPQueuePropertyTypeTest.java b/third-party/openflow-codec/src/test/java/org/openflow/codec/protocol/queue/OFPQueuePropertyTypeTest.java
deleted file mode 100644 (file)
index cbc7178..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-package org.openflow.codec.protocol.queue;
-
-import junit.framework.TestCase;
-
-import org.junit.Test;
-import org.openflow.codec.protocol.queue.OFPQueuePropertyType;
-
-public class OFPQueuePropertyTypeTest extends TestCase {
-    @Test
-    public void testMapping() throws Exception {
-        TestCase.assertEquals(OFPQueuePropertyType.MIN_RATE, OFPQueuePropertyType.valueOf((short) 1));
-        TestCase.assertEquals(OFPQueuePropertyType.MAX_RATE, OFPQueuePropertyType.valueOf((short) 2));
-        TestCase.assertEquals(OFPQueuePropertyType.EXPERIMENTER, OFPQueuePropertyType.valueOf((short) 0xffff));
-
-    }
-}