Skip to content

Make BytecodeEnhancedTestEngine non-discoverable by default #10491

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
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