HomeSort by relevance Sort by last modified time
    Searched refs:VALUES_ARRAY (Results 1 - 2 of 2) sorted by null

  /cts/tests/tests/content/src/android/content/cts/
ContentProviderClientTest.java 71 private static final ContentValues[] VALUES_ARRAY = {VALUES};
219 mContentProviderClient.bulkInsert(URI, VALUES_ARRAY);
220 verify(mIContentProvider).bulkInsert(PACKAGE_NAME, URI, VALUES_ARRAY);
224 when(mIContentProvider.bulkInsert(PACKAGE_NAME, URI, VALUES_ARRAY))
227 testTimeout(() -> mContentProviderClient.bulkInsert(URI, VALUES_ARRAY));
229 verify(mIContentProvider).bulkInsert(PACKAGE_NAME, URI, VALUES_ARRAY);
ContentResolverWrapTest.java 62 private static final ContentValues[] VALUES_ARRAY = new ContentValues[0];
110 doReturn(42).when(mProvider).bulkInsert(URI, VALUES_ARRAY);
111 assertEquals(42, mResolver.bulkInsert(URI, VALUES_ARRAY));

Completed in 699 milliseconds