- java.lang.Object
-
- org.junit.jupiter.api.parallel.Resources
-
@API(status=EXPERIMENTAL, since="5.3") public class Resources extends Object
Common resource names for synchronizing test execution.- Since:
- 5.3
- See Also:
ResourceLock
-
-
Field Summary
Fields Modifier and Type Field Description static String
LOCALE
Represents the default locale for the current instance of the JVM.static String
SYSTEM_ERR
Represents the standard error stream of the current process.static String
SYSTEM_OUT
Represents the standard output stream of the current process.static String
SYSTEM_PROPERTIES
Represents Java's system properties.static String
TIME_ZONE
Represents the default time zone for the current instance of the JVM.
-
-
-
Field Detail
-
SYSTEM_PROPERTIES
public static final String SYSTEM_PROPERTIES
Represents Java's system properties.
-
SYSTEM_OUT
public static final String SYSTEM_OUT
Represents the standard output stream of the current process.
-
SYSTEM_ERR
public static final String SYSTEM_ERR
Represents the standard error stream of the current process.
-
LOCALE
@API(status=EXPERIMENTAL, since="5.4") public static final String LOCALE
Represents the default locale for the current instance of the JVM.- Since:
- 5.4
- See Also:
Locale.setDefault(java.util.Locale)
, Constant Field Values
-
TIME_ZONE
@API(status=EXPERIMENTAL, since="5.4") public static final String TIME_ZONE
Represents the default time zone for the current instance of the JVM.- Since:
- 5.4
- See Also:
TimeZone.setDefault(java.util.TimeZone)
, Constant Field Values
-
-