diff options
author | 2025-02-20 05:45:41 -0800 | |
---|---|---|
committer | 2025-02-20 05:45:41 -0800 | |
commit | 58d52a4d809d3b7da9dcc3d4e71bc1f45c3b76e7 (patch) | |
tree | c93fc0a5ea0bf23e0671ed8d05968faa0d7cfc67 | |
parent | 6480ad21d8da4ea73d3c1f7c2e8893b9b822c895 (diff) |
Add mock for new conversation title.
Change-Id: I33f9395c83241078301f1f743dd53a27c47c6402
Fix: 397900637
Test: this
Flag: TEST_ONLY
-rw-r--r-- | packages/SystemUI/multivalentTests/src/com/android/systemui/statusbar/notification/row/wrapper/NotificationConversationTemplateViewWrapperTest.kt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/SystemUI/multivalentTests/src/com/android/systemui/statusbar/notification/row/wrapper/NotificationConversationTemplateViewWrapperTest.kt b/packages/SystemUI/multivalentTests/src/com/android/systemui/statusbar/notification/row/wrapper/NotificationConversationTemplateViewWrapperTest.kt index 9a6a6997b96f..081f52c4ff3b 100644 --- a/packages/SystemUI/multivalentTests/src/com/android/systemui/statusbar/notification/row/wrapper/NotificationConversationTemplateViewWrapperTest.kt +++ b/packages/SystemUI/multivalentTests/src/com/android/systemui/statusbar/notification/row/wrapper/NotificationConversationTemplateViewWrapperTest.kt @@ -135,6 +135,7 @@ class NotificationConversationTemplateViewWrapperTest : SysuiTestCase() { .thenReturn(mock()) whenever(requireViewById<View>(R.id.app_name_text)).thenReturn(mock()) whenever(requireViewById<View>(R.id.conversation_text)).thenReturn(mock()) + whenever(requireViewById<View>(R.id.title)).thenReturn(mock()) } return mockView } |