Package org.hibernate.junit.functional

Examples of org.hibernate.junit.functional.FunctionalTestClassTestSuite


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

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


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

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

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

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

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

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

  public String[] getMappings() {
    return new String[] { "entitymode/dom4j/many2one/Car.hbm.xml" };
  }

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

  public String getCacheConcurrencyStrategy() {
    return "transactional";
  }

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

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

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

  public String[] getMappings() {
    return new String[] { "collection/original/UserPermissions.hbm.xml", "collection/original/Zoo.hbm.xml" };
  }

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

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

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

  public String getCacheConcurrencyStrategy() {
    return null;
  }

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