Enhancement-Show Icon Labels When Long Pressed (#5492)

* Enhancement-Show Icon Labels when Long Pressed

* Tests Added
This commit is contained in:
Shashank Kumar 2024-01-29 13:35:43 +05:30 committed by GitHub
parent a8545abff2
commit 8bafee3801
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 67 additions and 1 deletions

View file

@ -55,6 +55,11 @@ class CommonPlaceClickActionsUnitTest {
Assert.assertNotNull(commonPlaceClickActions.onGalleryClicked())
Assert.assertNotNull(commonPlaceClickActions.onOverflowClicked())
Assert.assertNotNull(commonPlaceClickActions.onDirectionsClicked())
Assert.assertNotNull(commonPlaceClickActions.onCameraLongPressed())
Assert.assertNotNull(commonPlaceClickActions.onGalleryLongPressed())
Assert.assertNotNull(commonPlaceClickActions.onBookmarkLongPressed())
Assert.assertNotNull(commonPlaceClickActions.onDirectionsLongPressed())
Assert.assertNotNull(commonPlaceClickActions.onOverflowLongPressed())
}
@Test
@ -99,4 +104,4 @@ class CommonPlaceClickActionsUnitTest {
method.invoke(commonPlaceClickActions)
}
}
}