Home
last modified time | relevance | path

Searched refs:assertStoredValues (Results 1 – 7 of 7) sorted by relevance

/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
DLegacyContactsProviderTest.java84 assertStoredValues(uri, values); in testPeopleInsert()
96 assertStoredValues(uri, values); in testPeopleUpdate()
103 assertStoredValues(uri, values); in testPeopleUpdate()
109 assertStoredValues(uri, values); in testPeopleUpdate()
178 assertStoredValues(personUri, values); in testPrimaryOrganization()
186 assertStoredValues(personUri, values); in testPrimaryOrganization()
194 assertStoredValues(personUri, values); in testPrimaryOrganization()
222 assertStoredValues(personUri, values); in testPrimaryPhone()
228 assertStoredValues(phoneUri2, values); in testPrimaryPhone()
236 assertStoredValues(personUri, values); in testPrimaryPhone()
[all …]
DContactsProvider2Test.java1240 assertStoredValues(rowUri, values); in testRawContactsInsert()
1417 assertStoredValues(dataUri, values); in testDataInsert()
1589 assertStoredValues(ContentUris.withAppendedId(Phone.CONTENT_URI, phoneId), values); in testPhonesQuery()
1609 assertStoredValues(Phone.CONTENT_URI, new ContentValues[] {values1, values1}); in testPhonesWithMergedContacts()
1616 assertStoredValues(dedupeUri, new ContentValues[] {values1, values1}); in testPhonesWithMergedContacts()
1625 assertStoredValues(Phone.CONTENT_URI, new ContentValues[] {values1, values1}); in testPhonesWithMergedContacts()
1628 assertStoredValues(dedupeUri, values1); in testPhonesWithMergedContacts()
1651 assertStoredValues(dataUri, in testPhonesNormalizedNumber()
1669 assertStoredValues(dataUri, in testPhonesNormalizedNumber()
1685 assertStoredValues(dataUri, in testPhonesNormalizedNumber()
[all …]
DVoicemailProviderTest.java115 assertStoredValues(uri, getTestVoicemailValues()); in testInsert()
193 assertStoredValues(uri, values); in testUpdate()
241 assertStoredValues(uri, newValues); in testUpdateOwnPackageVoicemail_RemovesDirtyStatus()
257 assertStoredValues(uri, newValues); in testUpdateOwnPackageVoicemail_retainDirtyStatus_dirty()
273 assertStoredValues(uri, newValues); in testUpdateOwnPackageVoicemail_retainDirtyStatus_notDirty()
287 assertStoredValues(uri, newValues); in testUpdateOwnPackageVoicemail_retainDirtyStatus_noOtherValues()
315 assertStoredValues(anotherVoicemail, values); in testDeleteOtherPackageVoicemail_SetsDirtyStatus()
470 assertStoredValues(anotherVoicemail, getTestVoicemailValues()); in testPermissions_UpdateAndDelete()
726 assertStoredValues(uri, values); in testStatusInsert()
740 assertStoredValues(uri, values); in testStatusUpdate()
[all …]
DCallLogProviderTest.java353 assertStoredValues(uri, values); in testInsert_RegularCallRecord()
381 assertStoredValues(uri, values); in testInsert_VoicemailCallRecord()
401 assertStoredValues(uri, values); in testUpdate()
477 assertStoredValues(uri, values); in testAddCall()
714 assertStoredValues(Calls.CONTENT_URI); in testCopyEntriesFromCursor_AllEntriesSyncedWithoutDuplicatesPresent()
719 assertStoredValues(Calls.CONTENT_URI, in testCopyEntriesFromCursor_AllEntriesSyncedWithoutDuplicatesPresent()
729 assertStoredValues(Calls.CONTENT_URI, getTestCallLogValues(1)); in testCopyEntriesFromCursor_DuplicatesIgnoredCorrectly()
734 assertStoredValues(Calls.CONTENT_URI, in testCopyEntriesFromCursor_DuplicatesIgnoredCorrectly()
DDirectoryTest.java64 assertStoredValues(defaultDirectoryUri, values); in testDefaultDirectory()
80 assertStoredValues(defaultDirectoryUri, values); in testInvisibleLocalDirectory()
DContactsProvider2TransactionTest.java198 assertStoredValues(Contacts.CONTENT_URI, cv( in checkStoredContact()
228 assertStoredValues(Profile.CONTENT_URI, cv( in checkStoredProfile()
DBaseContactsProvider2Test.java976 protected void assertStoredValues(Uri rowUri, ContentValues expectedValues) { in assertStoredValues() method in BaseContactsProvider2Test
977 assertStoredValues(rowUri, null, null, expectedValues); in assertStoredValues()
980 protected void assertStoredValues(Uri rowUri, ContentValues... expectedValues) { in assertStoredValues() method in BaseContactsProvider2Test
981 assertStoredValues(rowUri, null, null, expectedValues); in assertStoredValues()
984 protected void assertStoredValues(Uri rowUri, String selection, String[] selectionArgs, in assertStoredValues() method in BaseContactsProvider2Test
1032 protected void assertStoredValues( in assertStoredValues() method in BaseContactsProvider2Test
1034 assertStoredValues(mResolver.query(rowUri, null, selection, selectionArgs, null), in assertStoredValues()
1038 private void assertStoredValues(Cursor c, ContentValues... expectedValues) { in assertStoredValues() method in BaseContactsProvider2Test
1057 assertStoredValues(db.rawQuery(sql, selectionArgs), expectedValues); in assertStoredValuesDb()