org.linguafranca.util.TestUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of test Show documentation
Show all versions of test Show documentation
Contains the shared test classes for exercising the functionality of a PWDB database implementation.
The newest version!
package org.linguafranca.util;
import com.google.common.io.ByteStreams;
import java.io.PrintStream;
public class TestUtil {
/**
* set system property to suppress output from tests
* @return if "nullOutput has been set, e.g. in a profile
*/
public static PrintStream getTestPrintStream() {
return Boolean.getBoolean("inhibitConsoleOutput") ?
new PrintStream(ByteStreams.nullOutputStream()) :
new PrintStream(System.out);
}
}