Package ch.qos.logback.core.util

Examples of ch.qos.logback.core.util.TeeOutputStream


    // tee will output bytes on System out but it will also
    // collect them so that the output can be compared against
    // some expected output data

    // keep the console quiet
    tee = new TeeOutputStream(null);

    // redirect System.out to tee
    System.setOut(new PrintStream(tee));
  }
View Full Code Here

TOP

Related Classes of ch.qos.logback.core.util.TeeOutputStream

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.