*/
public void test_connectionFailedLjava_net_URILjava_net_SocketAddressLjava_io_IOException_IllegalArguement()
throws URISyntaxException {
SocketAddress sa = InetSocketAddress.createUnresolved("127.0.0.1", 0);
try {
selector.connectFailed(null, sa, new SocketException());
fail("should throw IllegalArgumentException if any argument is null.");
} catch (IllegalArgumentException e) {
// expected
}
try {
selector.connectFailed(httpUri, null, new SocketException());
fail("should throw IllegalArgumentException if any argument is null.");
} catch (IllegalArgumentException e) {
// expected
}
try {