OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:testAccount
(Results
1 - 4
of
4
) sorted by null
/packages/apps/Email/tests/src/com/android/email/mail/
StoreTests.java
59
Account
testAccount
= ProviderTestUtils.setupAccount("pop", false, mMockContext);
61
testAccount
.mHostAuthRecv = testAuth;
64
testAccount
.save(mMockContext);
66
testStore = Store.getInstance(
testAccount
, getContext());
68
assertSame(testStore, Store.sStores.get(
testAccount
.mId));
72
testAccount
= ProviderTestUtils.setupAccount("pop", false, mMockContext);
74
testAccount
.mHostAuthRecv = testAuth;
77
testAccount
.save(mMockContext);
78
testStore = Store.getInstance(
testAccount
, getContext());
80
assertSame(testStore, Store.sStores.get(
testAccount
.mId))
[
all
...]
/packages/apps/Email/tests/src/com/android/email/mail/transport/
SmtpSenderUnitTests.java
71
Account
testAccount
= new Account();
75
testAccount
.mHostAuthSend = testAuth;
76
mSender = (SmtpSender) SmtpSender.newInstance(
testAccount
, mProviderContext);
/packages/apps/Email/tests/src/com/android/email/mail/store/
ImapStoreUnitTests.java
152
Account
testAccount
= new Account();
156
testAccount
.mHostAuthRecv = testAuth;
157
mStore = (ImapStore) ImapStore.newInstance(
testAccount
, mTestContext);
345
Account
testAccount
;
351
testAccount
= new Account();
352
testAccount
.mHostAuthRecv = testAuth;
353
ImapStore testStore1A = (ImapStore) ImapStore.newInstance(
testAccount
, mTestContext);
359
testAccount
= new Account();
360
testAccount
.mHostAuthRecv = testAuth;
361
ImapStore testStore1B = (ImapStore) ImapStore.newInstance(
testAccount
, mTestContext)
[
all
...]
Pop3StoreUnitTests.java
74
Account
testAccount
= ProviderTestUtils.setupAccount("acct1", false, mMockContext);
78
testAccount
.mHostAuthRecv = testAuth;
79
testAccount
.save(mMockContext);
80
mStore = (Pop3Store) Pop3Store.newInstance(
testAccount
, mMockContext);
[
all
...]
Completed in 24 milliseconds