Examples of StubOutputStream


Examples of com.google.code.tempusfugit.StubOutputStream

    public void waitForCompletionTimesOut() throws InterruptedException {
        context.checking(new Expectations() {{
            oneOf(executor).shutdown();
            oneOf(executor).awaitTermination(with(any(Long.class)), with(any(TimeUnit.class))); will(returnValue(false));
        }});
        OutputStream stream = new StubOutputStream();
        new ConcurrentScheduler(executor, stream).finished();
        assertThat(stream.toString(), containsString("scheduler shutdown timed out before tests completed, you may have executors hanging around..."));
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.