Removed license headers erroneously added to openflowJ
[controller.git] / third-party / openflowj / src / test / java / org / openflow / util / OFTestCase.java
1 package org.openflow.util;
2
3 import org.openflow.protocol.factory.BasicFactory;
4 import org.openflow.protocol.factory.OFMessageFactory;
5
6 import junit.framework.TestCase;
7
8 public class OFTestCase extends TestCase {
9     public OFMessageFactory messageFactory;
10     
11     @Override
12     protected void setUp() throws Exception {
13         super.setUp();
14         messageFactory = new BasicFactory();
15     }
16
17     public void test() throws Exception {
18     }
19 }