Package org.hibernate.junit.functional

Examples of org.hibernate.junit.functional.FunctionalTestClassTestSuite


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

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


      ( (RootClass) cfg.getClassMapping("org.hibernate.test.legacy.Foo") ).setForceDiscriminator(false);
    }
  }

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

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

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

        "cascade/ParentWithAssignedId.hbm.xml"
    };
  }

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

  public BidirectionalManyToManySetToSetCollectionEventTest(String string) {
    super( string );
  }

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

  public BidirectionalManyToManyBagToSetCollectionEventTest(String string) {
    super( string );
  }

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

    cfg.setProperty( Environment.GENERATE_STATISTICS, "true");
    cfg.setProperty( Environment.STATEMENT_BATCH_SIZE, "0" );
  }

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

  public MergeTest(String str) {
    super( str );
  }

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

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

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