Package org.hibernate.junit.functional

Examples of org.hibernate.junit.functional.FunctionalTestClassTestSuite


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

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


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

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

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

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

  public void configure(Configuration cfg) {
    cfg.setProperty(Environment.GENERATE_STATISTICS, "true");
  }

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

    cfg.setProperty(Environment.MAX_FETCH_DEPTH, "10");
    cfg.setProperty(Environment.USE_SECOND_LEVEL_CACHE, "false");
  }

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

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

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

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

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

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

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

  public InstrumentCacheTest(String str) {
    super(str);
  }

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