Home | History | Annotate | Download | only in internal
      1 package org.junit.internal;
      2 
      3 import java.io.PrintStream;
      4 
      5 public class RealSystem implements JUnitSystem {
      6 
      7 	public void exit(int code) {
      8 		System.exit(code);
      9 	}
     10 
     11 	public PrintStream out() {
     12 		return System.out;
     13 	}
     14 
     15 }
     16