transcendental-lisp/test/testutil/TestUtilities.java

21 lines
465 B
Java
Raw Normal View History

package testutil;
import java.io.*;
public class TestUtilities {
public static InputStream createInputStreamFromString(String string) {
return new ByteArrayInputStream(string.getBytes());
}
public static InputStream createIOExceptionThrowingInputStream() {
return new InputStream() {
public int read() throws IOException {
throw new IOException("test IOException");
}
};
}
}