aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/org/junit/internal/RealSystem.java
blob: e64e1fe6aa614ca92f5183b240382e188e2f4236 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package org.junit.internal;

import java.io.PrintStream;

public class RealSystem implements JUnitSystem {

    /**
     * Will be removed in the next major release
     */
    @Deprecated
    public void exit(int code) {
        System.exit(code);
    }

    public PrintStream out() {
        return System.out;
    }

}