예제 #1
0
 public void testOnlyRetryAuthWhenSet() {
   SshjSshClient ssh1 = createClient();
   assert !ssh1.shouldRetry(new AuthorizationException("problem", null));
   assert !ssh1.shouldRetry(new UserAuthException("problem", null));
   ssh1.retryAuth = true;
   assert ssh1.shouldRetry(new AuthorizationException("problem", null));
   assert ssh1.shouldRetry(new UserAuthException("problem", null));
 }