}
log.info("Start of testManySmallSendReceives");
Packet outboundPacket = new ByteArrayPacket("Hello World".getBytes());
long start = System.currentTimeMillis();
for( int i=0; i < getTestIterations(); i++ ) {
doSendReceive(outboundPacket.duplicate());
}
long end = System.currentTimeMillis();
log.info("done. Duration: "+duration(start,end)+", duration per send: "+unitDuration(start, end, getTestIterations()));
}