carbidecpp22devenv/plugins/org.eclipse.test.source_3.5.0.r20080925/src/org.junit4_4.5.0.v20090423/junitsrc/org/junit/internal/RealSystem.java
changeset 636 3ef299ba838f
equal deleted inserted replaced
635:8d56403172bc 636:3ef299ba838f
       
     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 }