All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.linguafranca.util.TestUtil Maven / Gradle / Ivy

Go to download

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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy