Examples of FunctionalTestClassTestSuite


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

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

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

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

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

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

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

  public boolean appliesTo(Dialect dialect) {
    return dialect.supportsIdentityColumns();
  }

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

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

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

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

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

    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

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

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

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

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

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

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

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

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

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

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

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

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

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

      f.setFormula( lengthFunction.render( Hibernate.INTEGER, args, null ) );
    }
  }

  public static Test suite() {
    return new FunctionalTestClassTestSuite( CompositeElementTest.class );
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.