X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=third-party%2Fopenflowj%2Fsrc%2Ftest%2Fjava%2Forg%2Fopenflow%2Fprotocol%2FOFActionTypeTest.java;fp=third-party%2Fopenflowj%2Fsrc%2Ftest%2Fjava%2Forg%2Fopenflow%2Fprotocol%2FOFActionTypeTest.java;h=0000000000000000000000000000000000000000;hb=e1c04c5af263a9604a765f1ab98be51dfc51d8cb;hp=dedb8dc0e348246fdb35e5842358574e70a57c03;hpb=a935ffda7f26be29de879a47b426d0db7a28d588;p=controller.git diff --git a/third-party/openflowj/src/test/java/org/openflow/protocol/OFActionTypeTest.java b/third-party/openflowj/src/test/java/org/openflow/protocol/OFActionTypeTest.java deleted file mode 100644 index dedb8dc0e3..0000000000 --- a/third-party/openflowj/src/test/java/org/openflow/protocol/OFActionTypeTest.java +++ /dev/null @@ -1,20 +0,0 @@ -package org.openflow.protocol; - - -import org.junit.Test; -import org.openflow.protocol.action.OFActionType; - -import junit.framework.TestCase; - - -public class OFActionTypeTest extends TestCase { - @Test - public void testMapping() throws Exception { - TestCase.assertEquals(OFActionType.OUTPUT, - OFActionType.valueOf((short) 0)); - TestCase.assertEquals(OFActionType.OPAQUE_ENQUEUE, - OFActionType.valueOf((short) 11)); - TestCase.assertEquals(OFActionType.VENDOR, - OFActionType.valueOf((short) 0xffff)); - } -}