Home
last modified time | relevance | path

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

/cts/tests/tests/provider/src/android/provider/cts/
DCalendarTest.java2265 ContentValues badValues = EventHelper.getNewEventValues(account, seed++, calendarId, true); in testEventCreationAndDeletion() local
2266 badValues.remove(Events.CALENDAR_ID); in testEventCreationAndDeletion()
2268 createAndVerifyEvent(account, seed, calendarId, true, badValues); in testEventCreationAndDeletion()
2275 badValues = EventHelper.getNewEventValues(account, seed++, calendarId, false); in testEventCreationAndDeletion()
2276 badValues.remove(Events.EVENT_TIMEZONE); in testEventCreationAndDeletion()
2278 createAndVerifyEvent(account, seed, calendarId, false, badValues); in testEventCreationAndDeletion()
2313 ContentValues badValues = new ContentValues(updateValues); in testEventUpdateAsApp() local
2314 badValues.putNull(Events.EVENT_TIMEZONE); in testEventUpdateAsApp()
2315 badValues.remove(Events.DIRTY); in testEventUpdateAsApp()
2317 mContentResolver.update(eventUri, badValues, null, null); in testEventUpdateAsApp()