Package org.hibernate.testing.junit.functional

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


  public String[] getMappings() {
    return new String[] { "usercollection/basic/UserPermissions.hbm.xml" };
  }

  public static Test suite() {
    return new FunctionalTestClassTestSuite( UserCollectionTypeTest.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[] getMappings() {
    return new String[] { "propertyref/inheritence/joined/Person.hbm.xml" };
  }

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

  public String[] getMappings() {
    return new String[] { "propertyref/component/partial/Mapping.hbm.xml" };
  }

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

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

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

    // having second level cache causes a condition whereby the original test case would not fail...
    return null;
  }

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

    cfg.addSqlFunction( "avg", new ClassicAvgFunction() );
    cfg.addSqlFunction( "sum", new ClassicSumFunction() );
  }

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

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

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

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

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