OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:UpdateCredentialsTx
(Results
1 - 2
of
2
) sorted by null
/cts/tests/tests/accounts/common/src/android/accounts/cts/common/tx/
UpdateCredentialsTx.java
8
public class
UpdateCredentialsTx
implements Parcelable {
10
public static final Parcelable.Creator<
UpdateCredentialsTx
> CREATOR =
11
new Parcelable.Creator<
UpdateCredentialsTx
>() {
14
public
UpdateCredentialsTx
createFromParcel(Parcel in) {
15
return new
UpdateCredentialsTx
(in);
19
public
UpdateCredentialsTx
[] newArray(int size) {
20
return new
UpdateCredentialsTx
[size];
29
private
UpdateCredentialsTx
(Parcel in) {
36
public
UpdateCredentialsTx
(
/cts/tests/tests/accounts/src/android/accounts/cts/
AbstractAuthenticatorTests.java
27
import android.accounts.cts.common.tx.
UpdateCredentialsTx
;
259
providerBundle.setClassLoader(
UpdateCredentialsTx
.class.getClassLoader());
260
UpdateCredentialsTx
updateCredentialsTx
= providerBundle
262
assertNotNull(
updateCredentialsTx
);
265
assertEquals(Fixtures.ACCOUNT_DEFAULT,
updateCredentialsTx
.account);
266
assertNull(
updateCredentialsTx
.authTokenType);
268
validateSystemOptions(
updateCredentialsTx
.options);
270
assertNotNull(
updateCredentialsTx
.options);
271
assertEquals(accountName,
updateCredentialsTx
.options.getString(Fixtures.KEY_ACCOUNT_NAME))
[
all
...]
Completed in 185 milliseconds