Package org.hibernate.testing.junit.functional

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


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

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


  public void configure(Configuration cfg) {
    cfg.setInterceptor( new ProxyInterceptor() );
  }

  public static TestSuite suite() {
    return new FunctionalTestClassTestSuite( InterceptorDynamicEntityTest.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 String getCacheConcurrencyStrategy() {
    return null;
  }

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

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

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

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

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

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

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

  public final String[] getMappings() {
    return new String[] { "subclassfilter/union-subclass.hbm.xml" };
  }

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

  public boolean appliesTo(Dialect dialect) {
    return ( dialect instanceof Oracle9iDialect );
  }

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

  public final String[] getMappings() {
    return new String[] { "subclassfilter/discrim-subclass.hbm.xml" };
  }

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