HomeSort by relevance Sort by last modified time
    Searched refs:testAuth (Results 1 - 4 of 4) sorted by null

  /packages/apps/Email/tests/src/com/android/email/mail/
StoreTests.java 60 HostAuth testAuth = new HostAuth();
61 testAccount.mHostAuthRecv = testAuth;
62 testAuth.mAddress = "pop3.google.com";
63 testAuth.mProtocol = "pop3";
73 testAuth = new HostAuth();
74 testAccount.mHostAuthRecv = testAuth;
75 testAuth.mAddress = "imap.google.com";
76 testAuth.mProtocol = "imap";
85 testAuth = new HostAuth();
86 testAuth.mAddress = "unknown.google.com"
    [all...]
  /packages/apps/Email/tests/src/com/android/email/mail/transport/
SmtpSenderUnitTests.java 70 HostAuth testAuth = new HostAuth();
73 testAuth.setLogin("user", "password");
74 testAuth.setConnection("smtp", "server", 999);
75 testAccount.mHostAuthSend = testAuth;
  /packages/apps/Email/tests/src/com/android/email/mail/store/
ImapStoreUnitTests.java 151 HostAuth testAuth = new HostAuth();
154 testAuth.setLogin("user", "password");
155 testAuth.setConnection("imap", "server", 999);
156 testAccount.mHostAuthRecv = testAuth;
344 HostAuth testAuth;
348 testAuth = new HostAuth();
349 testAuth.setLogin("user1", "password");
350 testAuth.setConnection("imap", "server", 999);
352 testAccount.mHostAuthRecv = testAuth;
356 testAuth = new HostAuth()
    [all...]
Pop3StoreUnitTests.java 73 HostAuth testAuth = new HostAuth();
76 testAuth.setLogin("user", "password");
77 testAuth.setConnection("pop3", "server", 999);
78 testAccount.mHostAuthRecv = testAuth;
    [all...]

Completed in 67 milliseconds