-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17851 from stuartwdouglas/testing-input
Polish console input
- Loading branch information
Showing
9 changed files
with
107 additions
and
57 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
18 changes: 14 additions & 4 deletions
18
core/devmode-spi/src/main/java/io/quarkus/dev/spi/DevModeType.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,8 +1,18 @@ | ||
package io.quarkus.dev.spi; | ||
|
||
public enum DevModeType { | ||
LOCAL, | ||
REMOTE_LOCAL_SIDE, | ||
REMOTE_SERVER_SIDE, | ||
TEST_ONLY | ||
LOCAL(true), | ||
REMOTE_LOCAL_SIDE(false), | ||
REMOTE_SERVER_SIDE(false), | ||
TEST_ONLY(true); | ||
|
||
final boolean continuousTestingSupported; | ||
|
||
DevModeType(boolean continuousTestingSupported) { | ||
this.continuousTestingSupported = continuousTestingSupported; | ||
} | ||
|
||
public boolean isContinuousTestingSupported() { | ||
return continuousTestingSupported; | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -565,6 +565,7 @@ public enum Mode { | |
TEST, | ||
PROD, | ||
REMOTE_DEV_SERVER, | ||
REMOTE_DEV_CLIENT; | ||
REMOTE_DEV_CLIENT, | ||
CONTINUOUS_TEST; | ||
} | ||
} |