Class TestConsoleOutputOptions
- java.lang.Object
-
- org.junit.platform.console.options.TestConsoleOutputOptions
-
@API(status=INTERNAL, since="1.10") public class TestConsoleOutputOptions extends java.lang.Object
- Since:
- 1.10
-
-
Field Summary
Fields Modifier and Type Field Description private boolean
ansiColorOutputDisabled
private java.nio.file.Path
colorPalettePath
(package private) static Details
DEFAULT_DETAILS
(package private) static java.lang.String
DEFAULT_DETAILS_NAME
(package private) static Theme
DEFAULT_THEME
private Details
details
private boolean
isSingleColorPalette
private Theme
theme
-
Constructor Summary
Constructors Constructor Description TestConsoleOutputOptions()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.nio.file.Path
getColorPalettePath()
Details
getDetails()
Theme
getTheme()
boolean
isAnsiColorOutputDisabled()
boolean
isSingleColorPalette()
void
setAnsiColorOutputDisabled(boolean ansiColorOutputDisabled)
void
setColorPalettePath(java.nio.file.Path colorPalettePath)
void
setDetails(Details details)
void
setSingleColorPalette(boolean singleColorPalette)
void
setTheme(Theme theme)
-
-
-
Field Detail
-
DEFAULT_DETAILS_NAME
static final java.lang.String DEFAULT_DETAILS_NAME
- See Also:
- Constant Field Values
-
DEFAULT_DETAILS
static final Details DEFAULT_DETAILS
-
DEFAULT_THEME
static final Theme DEFAULT_THEME
-
ansiColorOutputDisabled
private boolean ansiColorOutputDisabled
-
colorPalettePath
private java.nio.file.Path colorPalettePath
-
isSingleColorPalette
private boolean isSingleColorPalette
-
details
private Details details
-
theme
private Theme theme
-
-
Method Detail
-
isAnsiColorOutputDisabled
public boolean isAnsiColorOutputDisabled()
-
setAnsiColorOutputDisabled
public void setAnsiColorOutputDisabled(boolean ansiColorOutputDisabled)
-
getColorPalettePath
public java.nio.file.Path getColorPalettePath()
-
setColorPalettePath
public void setColorPalettePath(java.nio.file.Path colorPalettePath)
-
isSingleColorPalette
public boolean isSingleColorPalette()
-
setSingleColorPalette
public void setSingleColorPalette(boolean singleColorPalette)
-
getDetails
public Details getDetails()
-
setDetails
public void setDetails(Details details)
-
getTheme
public Theme getTheme()
-
setTheme
public void setTheme(Theme theme)
-
-