@Ignore // Fails with a timeout !!!
public void testNtp() throws Exception
{
InetAddress host = InetAddress.getByName( null );
NTPUDPClient ntp = new NTPUDPClient();
ntp.setDefaultTimeout( 500000 );
long currentTime = System.currentTimeMillis();
TimeInfo timeInfo = ntp.getTime( host, port );
long returnTime = timeInfo.getReturnTime();
assertTrue( Math.abs( currentTime - returnTime ) < 1000 );
timeInfo.computeDetails();