Package org.hivedb.util

Source Code of org.hivedb.util.GeneratedClassTest

package org.hivedb.util;

import org.hivedb.util.classgen.GenerateInstance;
import org.hivedb.util.database.test.WeatherReport;
import org.junit.Test;

public class GeneratedClassTest {
 
  @Test
  public void testGetClass() throws Exception {
    WeatherReport instance = new GenerateInstance<WeatherReport>(WeatherReport.class).generate();
    instance.getClass().newInstance();
  }
}
TOP

Related Classes of org.hivedb.util.GeneratedClassTest

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.