Package org.hibernate.testing.junit.functional

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


  public String[] getMappings() {
    return new String[] { "idgen/enhanced/sequence/Pooled.hbm.xml" };
  }

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


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

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

  public String[] getMappings() {
    return new String[] { "idgen/enhanced/sequence/Basic.hbm.xml" };
  }

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

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

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

  public String[] getMappings() {
    return new String[] { "interceptor/User.hbm.xml", "interceptor/Image.hbm.xml" };
  }

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

  public String[] getMappings() {
    return new String[] { "idgen/enhanced/sequence/HiLo.hbm.xml" };
  }

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

  public String[] getMappings() {
    return new String[] { "cid/Customer.hbm.xml", "cid/Order.hbm.xml", "cid/LineItem.hbm.xml", "cid/Product.hbm.xml" };
  }

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

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

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

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

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

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

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