1package org.junit.internal;
2
3import java.io.PrintStream;
4
5public interface JUnitSystem {
6	void exit(int i);
7	PrintStream out();
8}
9