Package org.hibernate.testing.junit.functional

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


  public String[] getMappings() {
    return new String[] { "generatedkeys/seqidentity/MyEntity.hbm.xml" };
  }

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


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

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

  public final String[] getMappings() {
    return new String[] { "subclassfilter/joined-subclass.hbm.xml" };
  }

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

  public String[] getMappings() {
    return new String[] { "readonly/DataPoint.hbm.xml", "readonly/TextHolder.hbm.xml" };
  }

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

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

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

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

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

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

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

  public void configure(Configuration cfg) {
    cfg.setProperty(Environment.GENERATE_STATISTICS, "true");
  }

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

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

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

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

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