Package org.hibernate.testing.junit.functional

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


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

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


        "cascade/circle/MultiPathCircleCascadeDelayedInsert.hbm.xml"
    };
  }

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

  public void configure(Configuration cfg) {
    cfg.setProperty( Environment.DEFAULT_ENTITY_MODE, EntityMode.DOM4J.toString() );
  }

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

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

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

  public void configure(Configuration cfg) {
    cfg.setProperty( Environment.DEFAULT_ENTITY_MODE, EntityMode.DOM4J.toString() );
  }

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

  public String getCacheConcurrencyStrategy() {
    return null;
  }

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

  public String[] getMappings() {
    return new String[] { "sql/hand/custom/oracle/Mappings.hbm.xml", "sql/hand/custom/datadirect/oracle/StoredProcedures.hbm.xml" };
  }

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

  public String[] getMappings() {
    return new String[] { "version/db/User.hbm.xml" };
  }

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

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

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

    super.configure( cfg );
    cfg.setProperty( Environment.CHECK_NULLABILITY, "false" );
  }

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