Package org.hibernate.junit.functional

Examples of org.hibernate.junit.functional.FunctionalTestClassTestSuite


  public String[] getMappings() {
    return new String[] { "component/basic/User.hbm.xml" };
  }

  public static Test suite() {
    return new FunctionalTestClassTestSuite( ComponentTest.class );
  }
View Full Code Here


  public String[] getMappings() {
    return new String[] { "legacy/Simple.hbm.xml" };
  }

  public static Test suite() {
    return new FunctionalTestClassTestSuite( NewerPerformanceTest.class );
  }
View Full Code Here

  public JPAQLComplianceTest(String name) {
    super( name );
  }

  public static Test suite() {
    return new FunctionalTestClassTestSuite( JPAQLComplianceTest.class );
  }
View Full Code Here

  public String[] getMappings() {
    return new String[] { "idgen/enhanced/table/HiLo.hbm.xml" };
  }

  public static Test suite() {
    return new FunctionalTestClassTestSuite( HiLoTableTest.class );
  }
View Full Code Here

  public String[] getMappings() {
    return new String[] { "idgen/enhanced/table/Pooled.hbm.xml" };
  }

  public static Test suite() {
    return new FunctionalTestClassTestSuite( PooledTableTest.class );
  }
View Full Code Here

  public String[] getMappings() {
    return new String[] { "jpa/cascade/ParentChild.hbm.xml" };
  }

  public static Test suite() {
    return new FunctionalTestClassTestSuite( CascadeTest.class );
  }
View Full Code Here

  public void configure(Configuration cfg) {
    cfg.setProperty( Environment.STATEMENT_BATCH_SIZE, "20" );
  }

  public static Test suite() {
    return new FunctionalTestClassTestSuite( BatchTest.class );
  }
View Full Code Here

  public String[] getMappings() {
    return new String[] { "idgen/enhanced/forcedtable/Basic.hbm.xml" };
  }

  public static Test suite() {
    return new FunctionalTestClassTestSuite( BasicForcedTableSequenceTest.class );
  }
View Full Code Here

  public RepeatableReadTest(String name) {
    super( name );
  }

  public static Test suite() {
    return new FunctionalTestClassTestSuite( RepeatableReadTest.class );
  }
View Full Code Here

  public String[] getMappings() {
    return new String[] { "idgen/enhanced/forcedtable/Pooled.hbm.xml" };
  }

  public static Test suite() {
    return new FunctionalTestClassTestSuite( PooledForcedTableSequenceTest.class );
  }
View Full Code Here

TOP

Related Classes of org.hibernate.junit.functional.FunctionalTestClassTestSuite

Copyright © 2018 www.massapicom. 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.