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.
Load tests with runtime classloader, including basic profile support
- Loading branch information
1 parent
07f0957
commit c024bd4
Showing
40 changed files
with
1,746 additions
and
264 deletions.
There are no files selected for viewing
715 changes: 715 additions & 0 deletions
715
core/deployment/src/main/java/io/quarkus/deployment/dev/testing/AppMakerHelper.java
Large diffs are not rendered by default.
Oops, something went wrong.
17 changes: 0 additions & 17 deletions
17
core/deployment/src/main/java/io/quarkus/deployment/dev/testing/CurrentTestApplication.java
This file was deleted.
Oops, something went wrong.
16 changes: 16 additions & 0 deletions
16
core/deployment/src/main/java/io/quarkus/deployment/dev/testing/DotNames.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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package io.quarkus.deployment.dev.testing; | ||
|
||
import org.jboss.jandex.DotName; | ||
import org.junit.jupiter.api.extension.ExtendWith; | ||
import org.junit.jupiter.api.extension.RegisterExtension; | ||
|
||
public final class DotNames { | ||
|
||
private DotNames() { | ||
} | ||
|
||
public static final DotName EXTEND_WITH = DotName.createSimple(ExtendWith.class.getName()); | ||
public static final DotName REGISTER_EXTENSION = DotName.createSimple(RegisterExtension.class.getName()); | ||
// TODO this leaks knowledge of the junit5 module into this module | ||
public static final DotName QUARKUS_TEST_EXTENSION = DotName.createSimple("io.quarkus.test.junit.QuarkusTextExtension"); | ||
} |
338 changes: 338 additions & 0 deletions
338
core/deployment/src/main/java/io/quarkus/deployment/dev/testing/FacadeClassLoader.java
Large diffs are not rendered by default.
Oops, something went wrong.
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
2 changes: 1 addition & 1 deletion
2
...va/io/quarkus/test/common/TestStatus.java → ...us/deployment/dev/testing/TestStatus.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,4 +1,4 @@ | ||
package io.quarkus.test.common; | ||
package io.quarkus.deployment.dev.testing; | ||
|
||
public class TestStatus { | ||
|
||
|
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
Oops, something went wrong.