Removed legacy code that wasn't being used.
[openflowjava.git] / third-party / openflowj_netty / src / test / java / org / openflow / protocol / action / OFVendorActionRegistryTest.java
diff --git a/third-party/openflowj_netty/src/test/java/org/openflow/protocol/action/OFVendorActionRegistryTest.java b/third-party/openflowj_netty/src/test/java/org/openflow/protocol/action/OFVendorActionRegistryTest.java
deleted file mode 100644 (file)
index 31ad675..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-package org.openflow.protocol.action;
-
-import static org.junit.Assert.assertEquals;
-
-import org.junit.Test;
-import org.openflow.protocol.factory.OFVendorActionRegistry;
-
-public class OFVendorActionRegistryTest {
-
-    @Test
-    public void test() {
-        MockVendorActionFactory factory = new MockVendorActionFactory();
-        OFVendorActionRegistry.getInstance().register(MockVendorAction.VENDOR_ID, factory);
-        assertEquals(factory, OFVendorActionRegistry.getInstance().get(MockVendorAction.VENDOR_ID));
-    }
-
-}