I have an application that supports a few outbound web services. I am using HttpClient and I need to add a service time out because one of the external URLs that I am accessing takes a long time to respond (at times). I am trying to add a few junit test cases to make sure my timeout is working properly. I have something like this where the specified timeout value is little more than the configured socket timeout -
@Test (timeout=6000)
public void testTimeOut() {
notifier.performGetonUrl(getTestUrl());
}
I don't feel its a good one. Are there better tests I could use?