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.java364 ArrayList<UsageEvents.Event> activityEvents = new ArrayList<>(); in testOrderedActivityLaunchSequenceInEventLog() local
369 activityEvents.add(evt); in testOrderedActivityLaunchSequenceInEventLog()
376 assertEquals(3, activityEvents.size()); in testOrderedActivityLaunchSequenceInEventLog()
377 assertEquals(Event.ACTIVITY_RESUMED, activityEvents.get(0).getEventType()); in testOrderedActivityLaunchSequenceInEventLog()
378 assertEquals(Event.ACTIVITY_PAUSED, activityEvents.get(1).getEventType()); in testOrderedActivityLaunchSequenceInEventLog()
379 assertEquals(Event.ACTIVITY_STOPPED, activityEvents.get(2).getEventType()); in testOrderedActivityLaunchSequenceInEventLog()
382 assertEquals(1, activityEvents.size()); in testOrderedActivityLaunchSequenceInEventLog()
383 assertEquals(Event.ACTIVITY_RESUMED, activityEvents.get(0).getEventType()); in testOrderedActivityLaunchSequenceInEventLog()