FileDocCategorySizeDatePackage
DatabaseSpecificFunctionalTestCase.javaAPI DocHibernate 3.2.5795Tue Dec 12 16:22:26 GMT 2006org.hibernate.junit.functional

DatabaseSpecificFunctionalTestCase

public abstract class DatabaseSpecificFunctionalTestCase extends FunctionalTestCase
{@inheritDoc}
author
Steve Ebersole

Fields Summary
Constructors Summary
public DatabaseSpecificFunctionalTestCase(String string)

		super( string );
	
Methods Summary
protected voidrunTest()

		// Note: this protection comes into play when running
		// tests individually.  The suite as a whole is already
		// "protected" by the fact that these tests are actually
		// filtered out of the suite
		if ( appliesTo( getDialect() ) ) {
			super.runTest();
		}
		else {
			SkipLog.LOG.warn( "skipping database-specific test [" + fullTestName() + "] for dialect [" + getDialect().getClass().getName() + "]" );
		}