Examples of FunctionalTestClassTestSuite


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

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

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

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

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

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

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

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

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

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

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

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

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

  public boolean appliesTo(Dialect dialect) {
    return ( dialect instanceof Oracle9iDialect );
  }

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

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

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

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

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

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

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

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

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

  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

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

  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
TOP
Copyright © 2018 www.massapi.com. 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.