Package org.hibernate.testing.junit.functional

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


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

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


    cfg.setProperty(Environment.GENERATE_STATISTICS, "true");
    cfg.setProperty( Environment.DEFAULT_ENTITY_MODE, EntityMode.MAP.toString() );
  }

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

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

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

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

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

    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

    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

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

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

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

  public static Test suite() {
    return new FunctionalTestClassTestSuite( WhereTest.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[] { "sorted/Search.hbm.xml" };
  }

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