Removed legacy code that wasn't being used.
[openflowjava.git] / third-party / openflow-codec / src / test / java / org / openflow / codec / util / U32Test.java
diff --git a/third-party/openflow-codec/src/test/java/org/openflow/codec/util/U32Test.java b/third-party/openflow-codec/src/test/java/org/openflow/codec/util/U32Test.java
deleted file mode 100644 (file)
index 244d019..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-package org.openflow.codec.util;
-
-import org.openflow.codec.util.U32;
-
-import junit.framework.TestCase;
-
-public class U32Test extends TestCase {
-    /**
-     * Tests that we correctly translate unsigned values in and out of an int
-     *
-     * @throws Exception
-     */
-    public void test() throws Exception {
-        long val = 0xffffffffL;
-        TestCase.assertEquals(-1, U32.t(val));
-        TestCase.assertEquals(val, U32.f(-1));
-    }
-}