Package org.hibernate.testing.junit.functional

Examples of org.hibernate.testing.junit.functional.FunctionalTestClassTestSuite


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

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


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

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

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

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

      f.setFormula( lengthFunction.render( Hibernate.INTEGER, args, null ) );
    }
  }

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

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

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

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

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

  public String[] getMappings() {
    return new String[] { "propertyref/inheritence/discrim/Person.hbm.xml" };
  }

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

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

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

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

  public static Test suite() {
    return new FunctionalTestClassTestSuite( BulkManipulationTest.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

TOP

Related Classes of org.hibernate.testing.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.