Home | History | Annotate | Download | only in toolbox

Lines Matching defs:mAccount

41     private Account mAccount;
49 mAccount = new Account("coolperson", "cooltype");
50 mAuthenticator = new AndroidAuthenticator(mAccountManager, mAccount, "cooltype", false);
55 when(mAccountManager.getAuthToken(mAccount, "cooltype", false, null, null)).thenReturn(mFuture);
65 when(mAccountManager.getAuthToken(mAccount, "cooltype", false, null, null)).thenReturn(mFuture);
75 when(mAccountManager.getAuthToken(mAccount, "cooltype", false, null, null)).thenReturn(mFuture);
92 when(mAccountManager.getAuthToken(mAccount, "cooltype", false, null, null)).thenReturn(mFuture);
103 new AndroidAuthenticator(context, mAccount, "cooltype");
104 new AndroidAuthenticator(context, mAccount, "cooltype", true);
105 Assert.assertSame(mAccount, mAuthenticator.getAccount());