Package org.openflow.util

Source Code of org.openflow.util.OFTestCase

package org.openflow.util;

import org.openflow.protocol.factory.BasicFactory;
import org.openflow.protocol.factory.OFMessageFactory;

import junit.framework.TestCase;

public class OFTestCase extends TestCase {
    public OFMessageFactory messageFactory;
   
    @Override
    protected void setUp() throws Exception {
        super.setUp();
        messageFactory = new BasicFactory();
    }

    public void test() throws Exception {
    }
}
TOP

Related Classes of org.openflow.util.OFTestCase

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.