/**
   * Run the Credentials getCredentials(AuthenticationReason) method test.
   *
   * @throws Exception
   * @generatedBy CodePro at 4/8/14 10:37 AM
   */
  @Test
  public void testGetCredentials_2() throws Exception {
    AuthCallback fixture = new AuthCallback(true, "");
    AuthenticationReason reason = AuthenticationReason.AUTHORIZATION_REQUIRED;

    Credentials result = fixture.getCredentials(reason);

    // add additional test code here
    assertNotNull(result);
  }
  /**
   * Run the Credentials getCredentials(AuthenticationReason) method test.
   *
   * @throws Exception
   * @generatedBy CodePro at 4/8/14 10:37 AM
   */
  @Test(expected = com.sap.netweaver.porta.core.AuthenticationRefusedException.class)
  public void testGetCredentials_4() throws Exception {
    AuthCallback fixture = new AuthCallback(true, "");
    AuthenticationReason reason = AuthenticationReason.AUTHORIZATION_REQUIRED;

    Credentials result = fixture.getCredentials(reason);

    // add additional test code here
    assertNotNull(result);
  }
  /**
   * Run the Credentials getCredentials(AuthenticationReason) method test.
   *
   * @throws Exception
   * @generatedBy CodePro at 4/8/14 10:37 AM
   */
  @Test(expected = java.lang.IllegalArgumentException.class)
  public void testGetCredentials_5() throws Exception {
    AuthCallback fixture = new AuthCallback(true, "");
    AuthenticationReason reason = AuthenticationReason.AUTHORIZATION_REQUIRED;

    Credentials result = fixture.getCredentials(reason);

    // add additional test code here
    assertNotNull(result);
  }
 private void startSignUpWithBundle(AuthCallback callback, Bundle bundle) {
   final DigitsSession session = sessionManager.getActiveSession();
   digits.getScribeService().dailyPing();
   if (session != null && !session.isLoggedOutUser()) {
     callback.success(session, null);
   } else {
     startPhoneNumberActivity(twitterCore.getContext(), bundle);
   }
 }