HHH-10320 : Unit test failures due to feature tested that is not supported by database

This commit is contained in:
Gail Badner 2015-11-23 12:14:46 -08:00
parent cfbc0036f0
commit cd581f8dfd
1 changed files with 3 additions and 0 deletions

View File

@ -21,6 +21,8 @@ import org.hibernate.boot.registry.StandardServiceRegistryBuilder;
import org.hibernate.boot.spi.MetadataImplementor;
import org.hibernate.cfg.AvailableSettings;
import org.hibernate.testing.DialectChecks;
import org.hibernate.testing.RequiresDialectFeature;
import org.hibernate.testing.TestForIssue;
import org.hibernate.testing.junit4.BaseUnitTestCase;
import org.junit.After;
@ -32,6 +34,7 @@ import static org.junit.Assert.assertEquals;
/**
* @author Steve Ebersole
*/
@RequiresDialectFeature(value= DialectChecks.SupportsSequences.class, jiraKey = "HHH-10320" )
public class SequenceExportTest extends BaseUnitTestCase {
private StandardServiceRegistry ssr;