use of java.nio.channels.ConnectionPendingException in project j2objc by google.
the class ConnectionPendingExceptionTest method test_Constructor.
/**
* @tests {@link java.nio.channels.ConnectionPendingException#ConnectionPendingException()}
*/
public void test_Constructor() {
ConnectionPendingException e = new ConnectionPendingException();
assertNull(e.getMessage());
assertNull(e.getLocalizedMessage());
assertNull(e.getCause());
}
Aggregations