@@ -490,7 +490,7 @@ class TabSwitcherViewModelTest {
490
490
}
491
491
492
492
@Test
493
- fun `when Animation Tile Visible then Tab Switcher Items Include Animation Tile And Tabs ` () = runTest {
493
+ fun `when animated info panel then tab switcher items include animation tile and tabs ` () = runTest {
494
494
tabSwitcherAnimationFeature.self().setRawStoredState(State (enable = true ))
495
495
496
496
val tab1 = TabEntity (" 1" , position = 1 )
@@ -511,7 +511,7 @@ class TabSwitcherViewModelTest {
511
511
}
512
512
513
513
@Test
514
- fun `when Animation Tile Not Visible then Tab Switcher Items Contain Only Tabs ` () = runTest {
514
+ fun `when animated info panel not visible then tab switcher items contain only tabs ` () = runTest {
515
515
tabSwitcherAnimationFeature.self().setRawStoredState(State (enable = true ))
516
516
517
517
val tab1 = TabEntity (" 1" , position = 1 )
@@ -531,7 +531,7 @@ class TabSwitcherViewModelTest {
531
531
}
532
532
533
533
@Test
534
- fun `when Tab Switcher Animation Feature disabled then Tab Switcher Items Contain Only Tabs ` () = runTest {
534
+ fun `when tab switcher animation feature disabled then tab switcher items contain only tabs ` () = runTest {
535
535
initializeViewModel(FakeTabSwitcherDataStore ())
536
536
tabSwitcherAnimationFeature.self().setRawStoredState(State (enable = false ))
537
537
whenever(mockTabSwitcherPrefsDataStore.isAnimationTileDismissed()).thenReturn(flowOf(true ))
@@ -549,7 +549,7 @@ class TabSwitcherViewModelTest {
549
549
}
550
550
551
551
@Test
552
- fun `when Animation Tile positive button clicked then Animation Tile is still visible` () = runTest {
552
+ fun `when animated info panel positive button clicked then animated info panel is still visible` () = runTest {
553
553
initializeViewModel(FakeTabSwitcherDataStore ())
554
554
whenever(mockWebTrackersBlockedAppRepository.getTrackerCountForLast7Days()).thenReturn(15 )
555
555
@@ -567,7 +567,7 @@ class TabSwitcherViewModelTest {
567
567
}
568
568
569
569
@Test
570
- fun `when Animation Tile negative button clicked then Animation Tile is removed` () = runTest {
570
+ fun `when animated info panel negative button clicked then animated info panel is removed` () = runTest {
571
571
initializeViewModel(FakeTabSwitcherDataStore ())
572
572
573
573
tabSwitcherAnimationFeature.self().setRawStoredState(State (enable = true ))
@@ -586,7 +586,7 @@ class TabSwitcherViewModelTest {
586
586
}
587
587
588
588
@Test
589
- fun `when Animation Tile visible then impressions pixel fired` () = runTest {
589
+ fun `when animated info panel visible then impressions pixel fired` () = runTest {
590
590
initializeViewModel(FakeTabSwitcherDataStore ())
591
591
tabSwitcherAnimationFeature.self().setRawStoredState(State (enable = true ))
592
592
whenever(mockWebTrackersBlockedAppRepository.getTrackerCountForLast7Days()).thenReturn(15 )
@@ -597,7 +597,7 @@ class TabSwitcherViewModelTest {
597
597
}
598
598
599
599
@Test
600
- fun `when Animation Tile clicked then tapped pixel fired` () = runTest {
600
+ fun `when animated info panel clicked then tapped pixel fired` () = runTest {
601
601
initializeViewModel(FakeTabSwitcherDataStore ())
602
602
tabSwitcherAnimationFeature.self().setRawStoredState(State (enable = true ))
603
603
whenever(mockWebTrackersBlockedAppRepository.getTrackerCountForLast7Days()).thenReturn(15 )
@@ -608,7 +608,7 @@ class TabSwitcherViewModelTest {
608
608
}
609
609
610
610
@Test
611
- fun `when Animation Tile negative button clicked then dismiss pixel fired` () = runTest {
611
+ fun `when animated info panel negative button clicked then dismiss pixel fired` () = runTest {
612
612
initializeViewModel(FakeTabSwitcherDataStore ())
613
613
tabSwitcherAnimationFeature.self().setRawStoredState(State (enable = true ))
614
614
whenever(mockWebTrackersBlockedAppRepository.getTrackerCountForLast7Days()).thenReturn(15 )
0 commit comments