HHH-13656 Con not build and run test on Eclipse IDE

Eclipse windows
This commit is contained in:
hailtondecastro 2019-10-23 21:39:00 -03:00 committed by Steve Ebersole
parent f6fad942df
commit e651bd7369
2 changed files with 10 additions and 1 deletions

View File

@ -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

View File

@ -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