Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
org.hibernate.testing.bytecode.enhancement.extension.engine.BytecodeEnhancedTestEngine
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@

import org.junit.jupiter.api.extension.ExtendWith;

/**
* Using this extension requires enabling the {@link org.hibernate.testing.bytecode.enhancement.extension.engine.BytecodeEnhancedTestEngine bytecode enhancement test engine}.
* To enable it either reference it as an additional engine in your JUnit request or add the {@code org.junit.platform.engine.TestEngine} file
* with the {@link org.hibernate.testing.bytecode.enhancement.extension.engine.BytecodeEnhancedTestEngine} to your
* {@code test/resources/META-INF/services}.
*
*/
@Inherited
@Retention(RetentionPolicy.RUNTIME)
@ExtendWith(BytecodeEnhancementExtension.class)
Expand Down