Package org.hibernate.testing.junit.functional

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


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

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


  public String[] getMappings() {
    return new String[] { "cut/types.hbm.xml", "cut/Transaction.hbm.xml" };
  }

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

  public String getCacheConcurrencyStrategy() {
    return null;
  }

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

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

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

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

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

  public String[] getMappings() {
    return new String[] { "typeparameters/Typedef.hbm.xml", "typeparameters/Widget.hbm.xml" };
  }

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

  public String[] getMappings() {
    return new String[] { "collection/backref/map/compkey/Mappings.hbm.xml" };
  }

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

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

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

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

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

    super.configure( cfg );
    cfg.setInterceptor( new EntityNameInterceptor() );
  }

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