Package org.hibernate.testing.orm.junit
Class DomainModelExtension
- java.lang.Object
-
- org.hibernate.testing.orm.junit.DomainModelExtension
-
- All Implemented Interfaces:
org.junit.jupiter.api.extension.BeforeEachCallback,org.junit.jupiter.api.extension.Extension,org.junit.jupiter.api.extension.TestExecutionExceptionHandler,org.junit.jupiter.api.extension.TestInstancePostProcessor
public class DomainModelExtension extends Object implements org.junit.jupiter.api.extension.TestInstancePostProcessor, org.junit.jupiter.api.extension.BeforeEachCallback, org.junit.jupiter.api.extension.TestExecutionExceptionHandler
hibernate-testing implementation of a few JUnit5 contracts to support SessionFactory-based testing, including argument injection (or seeDomainModelScopeAware)- See Also:
ServiceRegistryScope,DomainModelExtension
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classDomainModelExtension.DomainModelScopeImpl
-
Constructor Summary
Constructors Constructor Description DomainModelExtension()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description protected static voidapplyCacheSettings(org.hibernate.boot.Metadata metadata, boolean overrideCacheStrategy, String cacheConcurrencyStrategy)voidbeforeEach(org.junit.jupiter.api.extension.ExtensionContext context)static DomainModelScopefindDomainModelScope(Object testInstance, org.junit.jupiter.api.extension.ExtensionContext context)Intended for use from external consumers.voidhandleTestExecutionException(org.junit.jupiter.api.extension.ExtensionContext context, Throwable throwable)voidpostProcessTestInstance(Object testInstance, org.junit.jupiter.api.extension.ExtensionContext context)static DomainModelScoperesolveForMethodLevelSessionFactoryScope(org.junit.jupiter.api.extension.ExtensionContext context)
-
-
-
Method Detail
-
findDomainModelScope
public static DomainModelScope findDomainModelScope(Object testInstance, org.junit.jupiter.api.extension.ExtensionContext context)
Intended for use from external consumers. Will never create a scope, just attempt to consume an already created and stored one
-
resolveForMethodLevelSessionFactoryScope
public static DomainModelScope resolveForMethodLevelSessionFactoryScope(org.junit.jupiter.api.extension.ExtensionContext context)
-
postProcessTestInstance
public void postProcessTestInstance(Object testInstance, org.junit.jupiter.api.extension.ExtensionContext context)
- Specified by:
postProcessTestInstancein interfaceorg.junit.jupiter.api.extension.TestInstancePostProcessor
-
beforeEach
public void beforeEach(org.junit.jupiter.api.extension.ExtensionContext context)
- Specified by:
beforeEachin interfaceorg.junit.jupiter.api.extension.BeforeEachCallback
-
handleTestExecutionException
public void handleTestExecutionException(org.junit.jupiter.api.extension.ExtensionContext context, Throwable throwable) throws Throwable- Specified by:
handleTestExecutionExceptionin interfaceorg.junit.jupiter.api.extension.TestExecutionExceptionHandler- Throws:
Throwable
-
applyCacheSettings
protected static void applyCacheSettings(org.hibernate.boot.Metadata metadata, boolean overrideCacheStrategy, String cacheConcurrencyStrategy)
-
-