package hibernateTest.models; import org.hibernate.SessionFactory; //このメインクラスを実行すると、Hibernateのテストが行えます。 public class Main { public static void main(String args[]){ NativeApiIllustrationTest test = new NativeApiIllustrationTest(); test.setUp(); test.testBasicUsage(); test.tearDown(); } }