Assert.assertNull(DispatcherFactory.newDispatcher(0,
new ThreadPoolExecutor.AbortPolicy(),"test"));
Assert.assertNull(DispatcherFactory.newDispatcher(-1,
new ThreadPoolExecutor.AbortPolicy(),"test"));
dispatcher.stop();
try {
dispatcher.dispatch(new Runnable() {
public void run() {
Assert.fail();
}