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.java72 assertStoredValues(uri, values); in testPeopleInsert()
82 assertStoredValues(uri, values); in testPeopleUpdate()
88 assertStoredValues(uri, values); in testPeopleUpdate()
93 assertStoredValues(uri, values); in testPeopleUpdate()
162 assertStoredValues(personUri, values); in testPrimaryOrganization()
170 assertStoredValues(personUri, values); in testPrimaryOrganization()
178 assertStoredValues(personUri, values); in testPrimaryOrganization()
206 assertStoredValues(personUri, values); in testPrimaryPhone()
211 assertStoredValues(phoneUri2, values); in testPrimaryPhone()
219 assertStoredValues(personUri, values); in testPrimaryPhone()
[all …]
DVoicemailProviderTest.java87 assertStoredValues(uri, getTestVoicemailValues()); in testInsert()
148 assertStoredValues(uri, values); in testUpdate()
159 assertStoredValues(uri, values); in testUpdateOwnPackageVoicemail_NotDirty()
171 assertStoredValues(uri, newValues); in testUpdateOwnPackageVoicemail_RemovesDirtyStatus()
198 assertStoredValues(anotherVoicemail, values); in testDeleteOtherPackageVoicemail_SetsDirtyStatus()
331 assertStoredValues(anotherVoicemail, getTestVoicemailValues()); in testPermissions_UpdateAndDelete()
565 assertStoredValues(uri, values); in testStatusInsert()
577 assertStoredValues(uri, values); in testStatusUpdate()
587 assertStoredValues(uri, values); in testStatusUpsert()
605 assertStoredValues(uri, values); in testStatusQuotaInsert()
[all …]
DContactsProvider2Test.java959 assertStoredValues(rowUri, values); in testRawContactsInsert()
1137 assertStoredValues(dataUri, values); in testDataInsert()
1309 assertStoredValues(ContentUris.withAppendedId(Phone.CONTENT_URI, phoneId), values); in testPhonesQuery()
1330 assertStoredValues(Phone.CONTENT_URI, new ContentValues[] {values1, values1}); in testPhonesWithMergedContacts()
1337 assertStoredValues(dedupeUri, new ContentValues[] {values1, values1}); in testPhonesWithMergedContacts()
1346 assertStoredValues(Phone.CONTENT_URI, new ContentValues[] {values1, values1}); in testPhonesWithMergedContacts()
1349 assertStoredValues(dedupeUri, values1); in testPhonesWithMergedContacts()
1372 assertStoredValues(dataUri, in testPhonesNormalizedNumber()
1390 assertStoredValues(dataUri, in testPhonesNormalizedNumber()
1406 assertStoredValues(dataUri, in testPhonesNormalizedNumber()
[all …]
DCallLogProviderTest.java95 assertStoredValues(uri, values); in testInsert_RegularCallRecord()
122 assertStoredValues(uri, values); in testInsert_VoicemailCallRecord()
141 assertStoredValues(uri, values); in testUpdate()
213 assertStoredValues(uri, values); in testAddCall()
405 assertStoredValues(Calls.CONTENT_URI); in testCopyEntriesFromCursor_AllEntriesSyncedWithoutDuplicatesPresent()
410 assertStoredValues(Calls.CONTENT_URI, in testCopyEntriesFromCursor_AllEntriesSyncedWithoutDuplicatesPresent()
420 assertStoredValues(Calls.CONTENT_URI, getTestCallLogValues(1)); in testCopyEntriesFromCursor_DuplicatesIgnoredCorrectly()
425 assertStoredValues(Calls.CONTENT_URI, in testCopyEntriesFromCursor_DuplicatesIgnoredCorrectly()
DDirectoryTest.java59 assertStoredValues(defaultDirectoryUri, values); in testDefaultDirectory()
75 assertStoredValues(defaultDirectoryUri, values); in testInvisibleLocalDirectory()
DContactsProvider2TransactionTest.java198 assertStoredValues(Contacts.CONTENT_URI, cv( in checkStoredContact()
228 assertStoredValues(Profile.CONTENT_URI, cv( in checkStoredProfile()
DBaseContactsProvider2Test.java950 protected void assertStoredValues(Uri rowUri, ContentValues expectedValues) { in assertStoredValues() method in BaseContactsProvider2Test
951 assertStoredValues(rowUri, null, null, expectedValues); in assertStoredValues()
954 protected void assertStoredValues(Uri rowUri, ContentValues... expectedValues) { in assertStoredValues() method in BaseContactsProvider2Test
955 assertStoredValues(rowUri, null, null, expectedValues); in assertStoredValues()
958 protected void assertStoredValues(Uri rowUri, String selection, String[] selectionArgs, in assertStoredValues() method in BaseContactsProvider2Test
1006 protected void assertStoredValues( in assertStoredValues() method in BaseContactsProvider2Test
1008 assertStoredValues(mResolver.query(rowUri, null, selection, selectionArgs, null), in assertStoredValues()
1012 private void assertStoredValues(Cursor c, ContentValues... expectedValues) { in assertStoredValues() method in BaseContactsProvider2Test
1031 assertStoredValues(db.rawQuery(sql, selectionArgs), expectedValues); in assertStoredValuesDb()