Searched defs:expectedValue (Results 1 - 2 of 2) sorted by relevance

/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
H A DBaseContactsProvider2Test.java717 Object expectedValue = expectedArguments[i + 1];
718 if (expectedValue instanceof Uri) {
719 expectedValue = ContentUris.parseId((Uri) expectedValue);
721 if (expectedValue == null) {
724 if (expectedValue instanceof Long) {
726 expectedValue, actual.getAsLong(columnName));
727 } else if (expectedValue instanceof Integer) {
729 expectedValue, actual.getAsInteger(columnName));
730 } else if (expectedValue instanceo
815 assertStoredValue(Uri contentUri, long id, String column, Object expectedValue) argument
819 assertStoredValue(Uri rowUri, String column, Object expectedValue) argument
828 assertStoredValue(Uri rowUri, String selection, String[] selectionArgs, String column, Object expectedValue) argument
1010 assertCursorValue(Cursor cursor, String column, Object expectedValue) argument
[all...]
H A DContactsProvider2Test.java4135 private void assertVisibility(long rawContactId, String expectedValue) { argument
4137 null, Contacts.IN_VISIBLE_GROUP, expectedValue);
5499 boolean defaultValue, boolean expectedValue) {
5500 assertEquals(expectedValue, ContactsProvider2.readBooleanQueryParameter(
6135 private void assertQueryParameter(String uriString, String parameter, String expectedValue) { argument
6136 assertEquals(expectedValue, ContactsProvider2.getQueryParameter(
5498 assertBooleanUriParameter(String uriString, String parameter, boolean defaultValue, boolean expectedValue) argument

Completed in 39 milliseconds