Package com.google.code.tempusfugit

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

Related Classes of com.google.code.tempusfugit.StubOutputStream

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.