Package org.junit.jupiter.api.parallel
Class Resources
- java.lang.Object
-
- org.junit.jupiter.api.parallel.Resources
-
@API(status=EXPERIMENTAL, since="5.3") public class Resources extends java.lang.ObjectCommon resource names for synchronizing test execution.- Since:
- 5.3
- See Also:
ResourceLock
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringSYSTEM_ERRRepresents the standard error stream of the current process.static java.lang.StringSYSTEM_OUTRepresents the standard output stream of the current process.static java.lang.StringSYSTEM_PROPERTIESRepresents Java's system properties.
-
-
-
Field Detail
-
SYSTEM_PROPERTIES
public static final java.lang.String SYSTEM_PROPERTIES
Represents Java's system properties.- See Also:
System.getProperties(),System.setProperties(Properties), Constant Field Values
-
SYSTEM_OUT
public static final java.lang.String SYSTEM_OUT
Represents the standard output stream of the current process.- See Also:
System.out,System.setOut(PrintStream), Constant Field Values
-
SYSTEM_ERR
public static final java.lang.String SYSTEM_ERR
Represents the standard error stream of the current process.- See Also:
System.err,System.setErr(PrintStream), Constant Field Values
-
-