/**
  * Test that the used distributed work managers are configured
  *
  * @param dwm the Distributed Work Manager
  * @throws Throwable throwable exception
  */
 public void verifyConfig(DistributedWorkManager dwm) throws Throwable {
   assertNotNull(dwm);
   assertNotNull(dwm.getPolicy());
   assertNotNull(dwm.getSelector());
   assertNotNull(dwm.getTransport());
 }