Package org.apache.accumulo.core.util.shell.ShellTest

Examples of org.apache.accumulo.core.util.shell.ShellTest.TestOutputStream


  @Before
  public void setUp() throws Exception {
    Shell.log.setLevel(Level.ERROR);
   
    out = System.out;
    output = new TestOutputStream();
    System.setOut(new PrintStream(output));

    shell = new Shell(new ConsoleReader(new FileInputStream(FileDescriptor.in), output), new PrintWriter(output));
    shell.setLogErrorsToConsole();
  }
View Full Code Here

TOP

Related Classes of org.apache.accumulo.core.util.shell.ShellTest.TestOutputStream

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.