completed revert of HHH-13656

This commit is contained in:
Steve Ebersole 2019-11-08 07:12:16 -06:00
parent dd0b6a9da3
commit 68d931e383
2 changed files with 0 additions and 8 deletions

View File

@ -24,8 +24,6 @@ import org.hibernate.testing.orm.junit.SessionFactory;
import org.hibernate.testing.orm.junit.SessionFactoryScope;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Tag;
import org.junit.jupiter.api.Tags;
import org.junit.jupiter.api.Test;
import static org.hamcrest.CoreMatchers.instanceOf;
@ -45,9 +43,6 @@ import static org.hamcrest.MatcherAssert.assertThat;
)
@ServiceRegistry
@SessionFactory
@Tags({
@Tag("RunnableIdeTest"),
})
public class JoinedInheritanceTest {
@Test

View File

@ -16,14 +16,11 @@ import org.hibernate.service.ServiceRegistry;
import org.hibernate.sql.ast.spi.SqlAstCreationContext;
import org.hibernate.sql.exec.spi.Callback;
import org.hibernate.testing.junit5.StandardTags;
import org.hibernate.testing.orm.junit.BaseSessionFactoryFunctionalTest;
import org.junit.jupiter.api.Tag;
/**
* @author Steve Ebersole
*/
@Tag(StandardTags.SQM)
public abstract class BaseSqmUnitTest
extends BaseSessionFactoryFunctionalTest
implements SqlAstCreationContext, Callback {