Package org.hibernate.junit.functional

Examples of org.hibernate.junit.functional.FunctionalTestClassTestSuite


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

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


  public String getCacheConcurrencyStrategy() {
    return null;
  }

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

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

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

  public BrokenCollectionEventTest(String string) {
    super( string );
  }

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

  public String[] getMappings() {
    return new String[] { "manytomanyassociationclass/surrogateid/generated/Mappings.hbm.xml" };
  }

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

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

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

    super.configure( cfg );
    cfg.getEntityTuplizerFactory().registerDefaultTuplizerClass( EntityMode.POJO, MyEntityTuplizer.class );
  }

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

  public String getCacheConcurrencyStrategy() {
    return null;
  }

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

  public String[] getMappings() {
    return new String[] { "interceptor/User.hbm.xml", "interceptor/Image.hbm.xml" };
  }

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

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

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