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 Object
Common resource names for synchronizing test execution.- Since:
- 5.3
- See Also:
ResourceLock
-
-
Field Summary
Fields Modifier and Type Field Description static String
SYSTEM_ERR
Represents standard error stream of the current process.static String
SYSTEM_OUT
Represents standard output stream of the current process.static String
SYSTEM_PROPERTIES
Represents Java's system properties.
-
-
-
Field Detail
-
SYSTEM_PROPERTIES
public static final String SYSTEM_PROPERTIES
Represents Java's system properties.
-
SYSTEM_OUT
public static final String SYSTEM_OUT
Represents standard output stream of the current process.
-
SYSTEM_ERR
public static final String SYSTEM_ERR
Represents standard error stream of the current process.
-
-