blob: 1067c6d36b5c91b6f4ebff56d07a969cd98ac4d3 [file] [log] [blame]
package org.junit.internal;
import java.io.PrintStream;
public class RealSystem implements JUnitSystem {
public void exit(int code) {
System.exit(code);
}
public PrintStream out() {
return System.out;
}
}