Home
last modified time | relevance | path

Searched refs:assertRowCount (Results 1 – 3 of 3) sorted by relevance

/aosp12/packages/providers/BlockedNumberProvider/tests/src/com/android/providers/blockednumber/
H A DBlockedNumberProviderTest.java114 private void assertRowCount(int count, Uri uri) { in assertRowCount() method in BlockedNumberProviderTest
155 assertRowCount(7, BlockedNumbers.CONTENT_URI); in testInsert()
222 assertRowCount(5, BlockedNumbers.CONTENT_URI); in testDelete()
227 assertRowCount(4, BlockedNumbers.CONTENT_URI); in testDelete()
237 assertRowCount(3, BlockedNumbers.CONTENT_URI); in testDelete()
242 assertRowCount(2, BlockedNumbers.CONTENT_URI); in testDelete()
250 assertRowCount(2, BlockedNumbers.CONTENT_URI); in testDelete()
253 assertRowCount(0, BlockedNumbers.CONTENT_URI); in testDelete()
/aosp12/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
H A DContactsProvider2Test.java8349 assertRowCount(0, Contacts.CONTENT_STREQUENT_URI, null, null); in testDataUsageFeedbackAndDelete()
8355 assertRowCount(0, Contacts.CONTENT_STREQUENT_URI, null, null); in testDataUsageFeedbackAndDelete()
8363 assertRowCount(0, Contacts.CONTENT_STREQUENT_URI, null, null); in testDataUsageFeedbackAndDelete()
8371 assertRowCount(0, Contacts.CONTENT_STREQUENT_URI, null, null); in testDataUsageFeedbackAndDelete()
8432 assertRowCount(0, Contacts.CONTENT_STREQUENT_URI, null, null); in testDataUsageFeedbackAndDelete()
8440 assertRowCount(0, Contacts.CONTENT_URI, Contacts.TIMES_CONTACTED + ">0", null); in testDataUsageFeedbackAndDelete()
8441 assertRowCount(0, Contacts.CONTENT_URI, Contacts.LAST_TIME_CONTACTED + ">0", null); in testDataUsageFeedbackAndDelete()
8442 assertRowCount(0, RawContacts.CONTENT_URI, RawContacts.TIMES_CONTACTED + ">0", null); in testDataUsageFeedbackAndDelete()
8443 assertRowCount(0, RawContacts.CONTENT_URI, RawContacts.LAST_TIME_CONTACTED + ">0", null); in testDataUsageFeedbackAndDelete()
H A DBaseContactsProvider2Test.java1352 protected void assertRowCount(int expectedCount, Uri uri, String selection, String[] args) { in assertRowCount() method in BaseContactsProvider2Test