Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 72a8595e authored by Lyn Han's avatar Lyn Han
Browse files

Update test names to kotlin style

Test: StackScrollAlgorithmTest
Change-Id: I89a6df6f538ef0dd2dd46045dbb18ad6f7299130
parent 8a4c3cc1
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -47,7 +47,7 @@ class StackScrollAlgorithmTest : SysuiTestCase() {
    }

    @Test
    fun testUpTranslationSetToDefaultValue() {
    fun resetViewStates_defaultHun_yTranslationIsInset() {
        whenever(notificationRow.isPinned).thenReturn(true)
        whenever(notificationRow.isHeadsUp).thenReturn(true)

@@ -57,7 +57,7 @@ class StackScrollAlgorithmTest : SysuiTestCase() {
    }

    @Test
    fun testHeadsUpTranslationChangesBasedOnStackMargin() {
    fun resetViewStates_stackMargin_changesHunYTranslation() {
        whenever(notificationRow.isPinned).thenReturn(true)
        whenever(notificationRow.isHeadsUp).thenReturn(true)
        val minHeadsUpTranslation = context.resources
@@ -72,7 +72,7 @@ class StackScrollAlgorithmTest : SysuiTestCase() {
    }

    @Test
    fun resetViewStates_childIsEmptyShadeView_viewIsCenteredVertically() {
    fun resetViewStates_emptyShadeView_isCenteredVertically() {
        stackScrollAlgorithm.initView(context)
        val emptyShadeView = EmptyShadeView(context, /* attrs= */ null).apply {
            layout(/* l= */ 0, /* t= */ 0, /* r= */ 100, /* b= */ 100)