Newer
Older
CosmosServer / src / test / java / hibernateTest / models / Main.java
package hibernateTest.models;

import org.hibernate.SessionFactory;

public class Main {
    public static void main(String args[]){
        NativeApiIllustrationTest test = new NativeApiIllustrationTest();
        test.setUp();
        test.testBasicUsage();
        test.tearDown();
    }
}