1package org.junit.internal;
2
3import java.io.PrintStream;
4
5public class RealSystem implements JUnitSystem {
6
7    /**
8     * Will be removed in the next major release
9     */
10    @Deprecated
11    public void exit(int code) {
12        System.exit(code);
13    }
14
15    public PrintStream out() {
16        return System.out;
17    }
18
19}
20