Package org.hibernate.junit.functional

Examples of org.hibernate.junit.functional.FunctionalTestClassTestSuite


  public String[] getMappings() {
    return new String[] { "propertyref/component/complete/Mapping.hbm.xml" };
  }

  public static Test suite() {
    return new FunctionalTestClassTestSuite( CompleteComponentPropertyRefTest.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.QUERY_TRANSLATOR, ASTQueryTranslatorFactory.class.getName() );
  }

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

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

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

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

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

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

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

  public HQLTest(String x) {
    super( x );
  }

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

  public MySQLRoundFunctionTest( String string ) {
    super( string );
  }
  public static Test suite() {
    return new FunctionalTestClassTestSuite( MySQLRoundFunctionTest.class );
  }
View Full Code Here

*/
public class AnsiTrimEmulationFunctionTest extends TestCase {
  private static final String trimSource = "a.column";

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