Home
last modified time | relevance | path

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

/cts/tests/tests/app.usage/src/android/app/usage/cts/
DUsageStatsTest.java401 ArrayList<UsageEvents.Event> activityEvents = new ArrayList<>(); in testOrderedActivityLaunchSequenceInEventLog() local
406 activityEvents.add(evt); in testOrderedActivityLaunchSequenceInEventLog()
413 assertEquals(3, activityEvents.size()); in testOrderedActivityLaunchSequenceInEventLog()
414 assertEquals(Event.ACTIVITY_RESUMED, activityEvents.get(0).getEventType()); in testOrderedActivityLaunchSequenceInEventLog()
415 assertEquals(Event.ACTIVITY_PAUSED, activityEvents.get(1).getEventType()); in testOrderedActivityLaunchSequenceInEventLog()
416 assertEquals(Event.ACTIVITY_STOPPED, activityEvents.get(2).getEventType()); in testOrderedActivityLaunchSequenceInEventLog()
419 assertEquals(1, activityEvents.size()); in testOrderedActivityLaunchSequenceInEventLog()
420 assertEquals(Event.ACTIVITY_RESUMED, activityEvents.get(0).getEventType()); in testOrderedActivityLaunchSequenceInEventLog()