HHH-13656 Con not build and run test on Eclipse IDE
Eclipse windows
This commit is contained in:
parent
f6fad942df
commit
e651bd7369
|
@ -18,6 +18,8 @@ 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.is;
|
||||
|
@ -35,7 +37,9 @@ import static org.hamcrest.MatcherAssert.assertThat;
|
|||
}
|
||||
)
|
||||
@ServiceRegistry
|
||||
@SessionFactory
|
||||
@SessionFactory@Tags({
|
||||
@Tag("RunnableIdeTest"),
|
||||
})
|
||||
public class MappedSuperclassInheritanceTest {
|
||||
|
||||
@Test
|
||||
|
|
|
@ -22,6 +22,8 @@ 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;
|
||||
|
@ -41,6 +43,9 @@ import static org.hamcrest.MatcherAssert.assertThat;
|
|||
)
|
||||
@ServiceRegistry
|
||||
@SessionFactory
|
||||
@Tags({
|
||||
@Tag("RunnableIdeTest"),
|
||||
})
|
||||
public class TablePerClassInheritanceTest {
|
||||
|
||||
@Test
|
||||
|
|
Loading…
Reference in New Issue