Package org.hibernate.junit.functional

Examples of org.hibernate.junit.functional.FunctionalTestClassTestSuite


  public String getCacheConcurrencyStrategy() {
    return null;
  }

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


  public String getCacheConcurrencyStrategy() {
    return null;
  }

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

  public String getCacheConcurrencyStrategy() {
    return null;
  }

  public static Test suite() {
    return new FunctionalTestClassTestSuite( MixedTest.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 boolean appliesTo(Dialect dialect) {
    return dialect instanceof HSQLDialect;
  }

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

    super.configure( cfg );
    cfg.setProperty( Environment.GENERATE_STATISTICS, "true" );
  }

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

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

  public static Test suite() {
    return new FunctionalTestClassTestSuite( BatchedManyToManyTest.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 AggressiveReleaseTest(String name) {
    super( name );
  }

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

      "legacy/Blobber.hbm.xml"
    };
  }

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