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();//Hibernate全般のテストが行えます。
// test.GroupMemberTest();//Group-Memberテーブルに関するテストが行えます。
test.tearDown();
}
}