Removed legacy code that wasn't being used.
[openflowjava.git] / third-party / openflow-codec / src / test / java / org / openflow / codec / util / OFTestCase.java
diff --git a/third-party/openflow-codec/src/test/java/org/openflow/codec/util/OFTestCase.java b/third-party/openflow-codec/src/test/java/org/openflow/codec/util/OFTestCase.java
deleted file mode 100644 (file)
index 56c5aaa..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-package org.openflow.codec.util;
-
-import org.openflow.codec.protocol.factory.OFPBasicFactoryImpl;
-import org.openflow.codec.protocol.factory.OFPMessageFactory;
-
-import junit.framework.TestCase;
-
-public class OFTestCase extends TestCase {
-    public OFPMessageFactory messageFactory;
-
-    @Override
-    protected void setUp() throws Exception {
-        super.setUp();
-        messageFactory = new OFPBasicFactoryImpl();
-    }
-
-    public void test() throws Exception {
-    }
-}