Open Source Repository

Home /junit/junit-4.8.2 | Repository Home



org/junit/internal/RealSystem.java
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;
  }

}