Uses of Class
org.junit.platform.console.tasks.Style
-
Packages that use Style Package Description org.junit.platform.console.tasks Internal execution tasks for JUnit's console launcher. -
-
Uses of Style in org.junit.platform.console.tasks
Fields in org.junit.platform.console.tasks with type parameters of type Style Modifier and Type Field Description private java.util.Map<Style,java.lang.String>
ColorPalette. colorsToAnsiSequences
Methods in org.junit.platform.console.tasks that return Style Modifier and Type Method Description static Style
Style. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.(package private) static Style
Style. valueOf(TestExecutionResult result)
Returns the enum constant of this type with the specified name.(package private) static Style
Style. valueOf(TestIdentifier testIdentifier)
Returns the enum constant of this type with the specified name.static Style[]
Style. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.junit.platform.console.tasks that return types with arguments of type Style Modifier and Type Method Description private static java.util.Map<Style,java.lang.String>
ColorPalette. defaultPalette()
private static java.util.Map<Style,java.lang.String>
ColorPalette. singleColorPalette()
private static java.util.Map<Style,java.lang.String>
ColorPalette. toOverrideMap(java.util.Properties properties)
Methods in org.junit.platform.console.tasks with parameters of type Style Modifier and Type Method Description private java.lang.String
TreePrinter. color(Style style, java.lang.String text)
private java.lang.String
ColorPalette. getAnsiFormatter(Style style)
java.lang.String
ColorPalette. paint(Style style, java.lang.String text)
private void
VerboseTreePrintingListener. printDetail(Style style, java.lang.String detail, java.lang.String format, java.lang.Object... args)
Print single detail with a potential multi-line message.private void
VerboseTreePrintingListener. printf(Style style, java.lang.String message, java.lang.Object... args)
private void
FlatPrintingListener. println(Style style, java.lang.String format, java.lang.Object... args)
private void
TestFeedPrintingListener. println(Style style, java.lang.String message)
private void
FlatPrintingListener. printlnException(Style style, java.lang.Throwable throwable)
private void
FlatPrintingListener. printlnMessage(Style style, java.lang.String message, java.lang.String detail)
private void
FlatPrintingListener. printlnTestDescriptor(Style style, java.lang.String message, TestIdentifier testIdentifier)
private void
TreePrinter. printMessage(Style style, java.lang.String indent, java.lang.String message)
Constructor parameters in org.junit.platform.console.tasks with type arguments of type Style Constructor Description ColorPalette(java.util.Map<Style,java.lang.String> overrides)
ColorPalette(java.util.Map<Style,java.lang.String> colorsToAnsiSequences, boolean disableAnsiColors)
-