Home
last modified time | relevance | path

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

/packages/providers/BlockedNumberProvider/tests/src/com/android/providers/blockednumber/
DBlockedNumberProviderTest.java108 private void assertRowCount(int count, Uri uri) { in assertRowCount() method in BlockedNumberProviderTest
149 assertRowCount(7, BlockedNumbers.CONTENT_URI); in testInsert()
216 assertRowCount(5, BlockedNumbers.CONTENT_URI); in testDelete()
221 assertRowCount(4, BlockedNumbers.CONTENT_URI); in testDelete()
231 assertRowCount(3, BlockedNumbers.CONTENT_URI); in testDelete()
236 assertRowCount(2, BlockedNumbers.CONTENT_URI); in testDelete()
244 assertRowCount(2, BlockedNumbers.CONTENT_URI); in testDelete()
247 assertRowCount(0, BlockedNumbers.CONTENT_URI); in testDelete()
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
DContactsProvider2Test.java8729 assertRowCount(0, Contacts.CONTENT_STREQUENT_URI, null, null); in testDataUsageFeedbackAndDelete()
8735 assertRowCount(1, Contacts.CONTENT_STREQUENT_URI, null, null); in testDataUsageFeedbackAndDelete()
8744 assertRowCount(2, Contacts.CONTENT_STREQUENT_URI, null, null); in testDataUsageFeedbackAndDelete()
8753 assertRowCount(2, Contacts.CONTENT_STREQUENT_URI, null, null); in testDataUsageFeedbackAndDelete()
8851 assertRowCount(0, Contacts.CONTENT_STREQUENT_URI, null, null); in testDataUsageFeedbackAndDelete()
8859 assertRowCount(0, Contacts.CONTENT_URI, Contacts.TIMES_CONTACTED + ">0", null); in testDataUsageFeedbackAndDelete()
8860 assertRowCount(0, Contacts.CONTENT_URI, Contacts.LAST_TIME_CONTACTED + ">0", null); in testDataUsageFeedbackAndDelete()
8861 assertRowCount(0, RawContacts.CONTENT_URI, RawContacts.TIMES_CONTACTED + ">0", null); in testDataUsageFeedbackAndDelete()
8862 assertRowCount(0, RawContacts.CONTENT_URI, RawContacts.LAST_TIME_CONTACTED + ">0", null); in testDataUsageFeedbackAndDelete()
DBaseContactsProvider2Test.java1345 protected void assertRowCount(int expectedCount, Uri uri, String selection, String[] args) { in assertRowCount() method in BaseContactsProvider2Test