public class JvmSystemExiter extends java.lang.Object implements SystemExiter
SystemExiter
interface that calls the standards
System.exit method. It should be noted that there will be no unit tests for
this class, since there is only one line of actual code, that would only be
testable by mocking System or Runtime.Constructor and Description |
---|
JvmSystemExiter() |
Modifier and Type | Method and Description |
---|---|
void |
exit(int status)
Delegate call to System.exit() with the argument provided.
|
public void exit(int status)
exit
in interface SystemExiter
status
- exit status.SystemExiter.exit(int)