001package org.junit.internal;
002
003import java.io.PrintStream;
004
005public class RealSystem implements JUnitSystem {
006
007    /**
008     * Will be removed in the next major release
009     */
010    @Deprecated
011    public void exit(int code) {
012        System.exit(code);
013    }
014
015    public PrintStream out() {
016        return System.out;
017    }
018
019}