56c5aaa62aed816bd6533e110854f1a0fc6797e6
[openflowjava.git] / third-party / openflow-codec / src / test / java / org / openflow / codec / util / OFTestCase.java
1 package org.openflow.codec.util;
2
3 import org.openflow.codec.protocol.factory.OFPBasicFactoryImpl;
4 import org.openflow.codec.protocol.factory.OFPMessageFactory;
5
6 import junit.framework.TestCase;
7
8 public class OFTestCase extends TestCase {
9     public OFPMessageFactory messageFactory;
10
11     @Override
12     protected void setUp() throws Exception {
13         super.setUp();
14         messageFactory = new OFPBasicFactoryImpl();
15     }
16
17     public void test() throws Exception {
18     }
19 }