Package org.hibernate.junit.functional

Examples of org.hibernate.junit.functional.FunctionalTestClassTestSuite


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

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


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

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

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

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

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

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

    cfg.setProperty( Environment.GENERATE_STATISTICS, "true" );
    cfg.setProperty( Environment.USE_QUERY_CACHE, "true" );
  }

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

    cfg.setProperty( Environment.GENERATE_STATISTICS, "true" );
    cfg.setProperty( Environment.QUERY_TRANSLATOR, ASTQueryTranslatorFactory.class.getName() );
  }

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

    public SellCarTest( String string ) {
        super( string );
    }
    public static Test suite() {
    return new FunctionalTestClassTestSuite( SellCarTest.class );
  }
View Full Code Here

  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 ValuesBagCollectionEventTest(String string) {
    super( string );
  }

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

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

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