Package org.hibernate.testing.junit.functional

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


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

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


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

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

  public ClassicTranslatorTest(String x) {
    super( x );
  }

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

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

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

  public String[] getMappings() {
    return new String[] { "propertyref/component/complete/Mapping.hbm.xml" };
  }

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

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

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

      "legacy/Eye.hbm.xml"
    };
  }

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

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

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

        "cascade/circle/MultiPathCircleCascade.hbm.xml"
    };
  }

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

    super.configure( cfg );
    cfg.setProperty( Environment.CHECK_NULLABILITY, "true" );
  }

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