Assert.assertEquals(2, c2.getView().size());
System.out.println("view: " + c2.getView());
System.out.println("casting message");
start=System.currentTimeMillis();
RspList rsps=d1.castMessage(null, new Message(), new RequestOptions(Request.GET_ALL, 0));
stop=System.currentTimeMillis();
System.out.println("rsps:\n" + rsps);
System.out.println("call took " + (stop - start) + " ms");
assertNotNull(rsps);
Assert.assertEquals(2, rsps.size());
Rsp rsp=rsps.get(c1.getAddress());
assertNotNull(rsp);
Object ret=rsp.getValue();
assert ret == null;
rsp=rsps.get(c2.getAddress());
assertNotNull(rsp);
ret=rsp.getValue();
assert ret == null;
Util.close(c2);