Searched refs:getInternalBackgroundExecutorTaskCount (Results 1 – 2 of 2) sorted by relevance
19 import static com.android.server.healthconnect.TestUtils.getInternalBackgroundExecutorTaskCount;216 long currentTaskCount = getInternalBackgroundExecutorTaskCount(); in testOnPermissionsChangedCalled_withHealthPermissionsUid_expectBackgroundTaskAdded()227 assertThat(getInternalBackgroundExecutorTaskCount()).isEqualTo(currentTaskCount + 1); in testOnPermissionsChangedCalled_withHealthPermissionsUid_expectBackgroundTaskAdded()234 long currentTaskCount = getInternalBackgroundExecutorTaskCount(); in testOnPermissionsChangedCalled_withNoHealthPermissionsUid_expectNoBackgroundTaskAdded()245 assertThat(getInternalBackgroundExecutorTaskCount()).isEqualTo(currentTaskCount); in testOnPermissionsChangedCalled_withNoHealthPermissionsUid_expectNoBackgroundTaskAdded()
78 public static long getInternalBackgroundExecutorTaskCount() { in getInternalBackgroundExecutorTaskCount() method in TestUtils