Home
last modified time | relevance | path

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

/packages/apps/Car/Calendar/tests/ui/src/com/android/car/calendar/
DCarCalendarUiTest.java85 private static final String EVENT_TITLE = "the title"; field in CarCalendarUiTest
183 mTestEventRows.add(buildTestRow(START_DATE_TIME, 1, EVENT_TITLE, false)); in event_displayed()
191 onView(withText(EVENT_TITLE)).check(matches(isDisplayed())); in event_displayed()
201 mTestEventRows.add(buildTestRow(utcDayStartTime, 24, EVENT_TITLE, true)); in singleAllDayEvent_notCollapsed()
212 onView(withText(EVENT_TITLE)).check(matches(isDisplayed())); in singleAllDayEvent_notCollapsed()
218 mTestEventRows.add(buildTestRowAllDay(EVENT_TITLE)); in multipleAllDayEvents_collapsed()
230 onView(withText(EVENT_TITLE)).check(matches(not(isDisplayed()))); in multipleAllDayEvents_collapsed()
236 mTestEventRows.add(buildTestRowAllDay(EVENT_TITLE)); in multipleAllDayEvents_expands()
249 onView(withText(EVENT_TITLE)).check(matches(isDisplayed())); in multipleAllDayEvents_expands()
/packages/apps/Car/Calendar/tests/unit/src/com/android/car/calendar/common/
DEventsLiveDataTest.java81 private static final String EVENT_TITLE = "the title"; field in EventsLiveDataTest
221 assertThat(event.getTitle()).isEqualTo(EVENT_TITLE); in addObserver_oneEventResult()
631 startDateTime, eventDurationHours, EVENT_TITLE, EVENT_ALL_DAY);
635 return buildTestRowWithDuration(startDateTime, 24, EVENT_TITLE, true);
643 return buildTestRowWithDuration(CURRENT_DATE_TIME, 1, EVENT_TITLE, EVENT_ALL_DAY);