Package org.hibernate.junit.functional

Examples of org.hibernate.junit.functional.FunctionalTestClassTestSuite


  public String[] getMappings() {
    return new String[] { "idgen/enhanced/forcedtable/HiLo.hbm.xml" };
  }

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


  public String getCacheConcurrencyStrategy() {
    return null;
  }

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

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

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

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

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

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

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

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

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

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

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

  public void configure(Configuration cfg) {
    cfg.setProperty(Environment.DEFAULT_BATCH_FETCH_SIZE, "1");
  }

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

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

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

  public String[] getMappings() {
    return new String[] { "manytomanyassociationclass/surrogateid/assigned/Mappings.hbm.xml" };
  }

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