Home
last modified time | relevance | path

Searched refs:VALUES_ARRAY (Results 1 – 2 of 2) sorted by relevance

/cts/tests/tests/content/src/android/content/cts/
DContentProviderClientTest.java78 private static final ContentValues[] VALUES_ARRAY = {VALUES}; field in ContentProviderClientTest
235 mContentProviderClient.bulkInsert(URI, VALUES_ARRAY); in testBulkInsert()
236 verify(mIContentProvider).bulkInsert(mAttributionSource, URI, VALUES_ARRAY); in testBulkInsert()
241 VALUES_ARRAY); in testBulkInsertTimeout()
243 testTimeout(() -> mContentProviderClient.bulkInsert(URI, VALUES_ARRAY)); in testBulkInsertTimeout()
245 verify(mIContentProvider, after(150)).bulkInsert(mAttributionSource, URI, VALUES_ARRAY); in testBulkInsertTimeout()
DContentResolverWrapTest.java64 private static final ContentValues[] VALUES_ARRAY = new ContentValues[0]; field in ContentResolverWrapTest
112 doReturn(42).when(mProvider).bulkInsert(URI, VALUES_ARRAY); in testBulkInsert()
113 assertEquals(42, mResolver.bulkInsert(URI, VALUES_ARRAY)); in testBulkInsert()