Package org.hibernate.junit.functional

Examples of org.hibernate.junit.functional.FunctionalTestClassTestSuite


    cfg.setProperty( Environment.GENERATE_STATISTICS, "true" );
    cfg.setProperty( Environment.QUERY_TRANSLATOR, ASTQueryTranslatorFactory.class.getName() );
  }

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


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

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

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

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

  public String getCacheConcurrencyStrategy() {
    return null;
  }

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

  public BulkManipulationTest(String name) {
    super( name );
  }

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

    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

    cfg.setProperty( Environment.GENERATE_STATISTICS, "true" );
    cfg.setProperty( Environment.QUERY_TRANSLATOR, ASTQueryTranslatorFactory.class.getName() );
  }

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

      "legacy/Blobber.hbm.xml"
    };
  }

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

      "legacy/XY.hbm.xml"
    };
  }

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

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

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