Initial opendaylight infrastructure commit!!
[controller.git] / third-party / openflowj / src / test / java / org / openflow / util / OFTestCase.java
1
2 /*
3  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
4  *
5  * This program and the accompanying materials are made available under the
6  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
7  * and is available at http://www.eclipse.org/legal/epl-v10.html
8  */
9
10 package org.openflow.util;
11
12 import org.openflow.protocol.factory.BasicFactory;
13 import org.openflow.protocol.factory.OFMessageFactory;
14
15 import junit.framework.TestCase;
16
17 public class OFTestCase extends TestCase {
18     public OFMessageFactory messageFactory;
19     
20     @Override
21     protected void setUp() throws Exception {
22         super.setUp();
23         messageFactory = new BasicFactory();
24     }
25
26     public void test() throws Exception {
27     }
28 }