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.java610 ArrayList<UsageEvents.Event> activityEvents = new ArrayList<>(); in testOrderedActivityLaunchSequenceInEventLog() local
615 activityEvents.add(evt); in testOrderedActivityLaunchSequenceInEventLog()
622 assertEquals(3, activityEvents.size()); in testOrderedActivityLaunchSequenceInEventLog()
623 assertEquals(Event.ACTIVITY_RESUMED, activityEvents.get(0).getEventType()); in testOrderedActivityLaunchSequenceInEventLog()
624 assertEquals(Event.ACTIVITY_PAUSED, activityEvents.get(1).getEventType()); in testOrderedActivityLaunchSequenceInEventLog()
625 assertEquals(Event.ACTIVITY_STOPPED, activityEvents.get(2).getEventType()); in testOrderedActivityLaunchSequenceInEventLog()
628 assertEquals(1, activityEvents.size()); in testOrderedActivityLaunchSequenceInEventLog()
629 assertEquals(Event.ACTIVITY_RESUMED, activityEvents.get(0).getEventType()); in testOrderedActivityLaunchSequenceInEventLog()