Home
last modified time | relevance | path

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

/frameworks/base/services/tests/ondeviceintelligencetests/src/com/android/server/ondeviceintelligence/
DInferenceInfoStoreTest.java77 long testStartTime = System.currentTimeMillis(); in testEvictionAfterMaxAge() local
79 Base64.encodeToString(getInferenceInfoBytes(1, testStartTime - 10, in testEvictionAfterMaxAge()
80 testStartTime + 100), Base64.DEFAULT)); in testEvictionAfterMaxAge()
83 Base64.encodeToString(getInferenceInfoBytes(1, testStartTime - 5, in testEvictionAfterMaxAge()
84 testStartTime + 100), Base64.DEFAULT)); in testEvictionAfterMaxAge()
90 assertThat(inferenceInfos.get(0).getStartTimeMs()).isEqualTo(testStartTime - 10); in testEvictionAfterMaxAge()
91 assertThat(inferenceInfos.get(0).getEndTimeMs()).isEqualTo(testStartTime + 100); in testEvictionAfterMaxAge()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/qs/tiles/impl/night/ui/
DNightDisplayTileMapperTest.kt47 private val testStartTime = LocalTime.MIDNIGHT constant
175 NightDisplayTileModel.AutoModeCustom(false, false, testStartTime, null, true) in disabledModel_autoModeCustom_24Hour()
184 formatter24Hour.format(testStartTime) in disabledModel_autoModeCustom_24Hour()
193 NightDisplayTileModel.AutoModeCustom(false, false, testStartTime, null, false) in disabledModel_autoModeCustom_12Hour()
202 formatter12Hour.format(testStartTime) in disabledModel_autoModeCustom_12Hour()
212 NightDisplayTileModel.AutoModeCustom(false, true, testStartTime, null, false) in disabledModel_autoModeCustom_12Hour_isEnrolledForcedAutoMode()
221 formatter12Hour.format(testStartTime) in disabledModel_autoModeCustom_12Hour_isEnrolledForcedAutoMode()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/accessibility/data/repository/
DNightDisplayRepositoryTest.kt56 private val testStartTime = LocalTime.MIDNIGHT constant in com.android.systemui.accessibility.data.repository.NightDisplayRepositoryTest
62 whenever(nightDisplayCustomStartTime).thenReturn(testStartTime) in <lambda>()
109 callback.onCustomStartTimeChanged(testStartTime) in nightDisplayState_matchesAutoMode()
110 assertThat(lastState!!.startTime).isEqualTo(testStartTime) in nightDisplayState_matchesAutoMode()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/qs/tiles/impl/night/domain/interactor/
DNightDisplayTileDataInteractorTest.kt52 private val testStartTime = LocalTime.MIDNIGHT constant in com.android.systemui.qs.tiles.impl.night.domain.interactor.NightDisplayTileDataInteractorTest
58 whenever(nightDisplayCustomStartTime).thenReturn(testStartTime) in <lambda>()