forked from quarkusio/quarkus
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Revert quarkusio#40601 and disable tests enabled by quarkusio…
…#40749" This reverts commit fc3988b. It has some additional changes which re-revert part of quarkusio#40601, to reintroduce removed guards to avoid cloning things like Quarkus runtime classes. Otherwise we get test failures.
- Loading branch information
1 parent
f158eb3
commit 87d78cd
Showing
14 changed files
with
166 additions
and
399 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
63 changes: 0 additions & 63 deletions
63
test-framework/junit5/src/main/java/io/quarkus/test/junit/internal/CustomListConverter.java
This file was deleted.
Oops, something went wrong.
41 changes: 0 additions & 41 deletions
41
test-framework/junit5/src/main/java/io/quarkus/test/junit/internal/CustomMapConverter.java
This file was deleted.
Oops, something went wrong.
55 changes: 0 additions & 55 deletions
55
...ramework/junit5/src/main/java/io/quarkus/test/junit/internal/CustomMapEntryConverter.java
This file was deleted.
Oops, something went wrong.
40 changes: 0 additions & 40 deletions
40
test-framework/junit5/src/main/java/io/quarkus/test/junit/internal/CustomSetConverter.java
This file was deleted.
Oops, something went wrong.
6 changes: 5 additions & 1 deletion
6
test-framework/junit5/src/main/java/io/quarkus/test/junit/internal/DeepClone.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,15 @@ | ||
package io.quarkus.test.junit.internal; | ||
|
||
import io.quarkus.bootstrap.app.RunningQuarkusApplication; | ||
|
||
/** | ||
* Strategy to deep clone an object | ||
* | ||
* <p> | ||
* Used in order to clone an object loaded from one ClassLoader into another | ||
*/ | ||
public interface DeepClone { | ||
|
||
Object clone(Object objectToClone); | ||
|
||
void setRunningQuarkusApplication(RunningQuarkusApplication runningQuarkusApplication); | ||
} |
Oops, something went wrong.