Package org.apache.shindig.common.testing

Examples of org.apache.shindig.common.testing.TestExecutorService


  }

  @Test(expected = PreloadException.class)
  public void exceptionsArePropagated() throws PreloadException {
    preloader.tasks.put(PRELOAD_STRING_KEY, new TestPreloadCallable(null));
    PreloaderService service = new ConcurrentPreloaderService(new TestExecutorService(),
        Arrays.<Preloader>asList(preloader));
    service.preload(null, null).getData(PRELOAD_STRING_KEY);
  }
View Full Code Here

TOP

Related Classes of org.apache.shindig.common.testing.TestExecutorService

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.