Package org.hibernate.testing.junit.functional

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


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

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


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

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

        "dialect/cache/TestInterSystemsFunctionsClass.hbm.xml"
    };
  }

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

      dialect instanceof SybaseAnywhereDialect || dialect instanceof SybaseASE15Dialect ||
      dialect instanceof SQLServerDialect);
  }

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

  public String getCacheConcurrencyStrategy() {
    return null;
  }

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

    // TODO : add more triggers for dialects which allow mods in triggers...
    return ( dialect instanceof Oracle9iDialect );
  }

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

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

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

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

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

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

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

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

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