Merge "Ignore failing tests of ManageApplicationsTest" into main

This commit is contained in:
Yanting Yang
2023-11-28 10:40:59 +00:00
committed by Android (Google) Code Review

View File

@@ -63,6 +63,7 @@ import com.android.settingslib.applications.ApplicationsState.AppFilter;
import com.android.settingslib.testutils.shadow.ShadowInteractionJankMonitor; import com.android.settingslib.testutils.shadow.ShadowInteractionJankMonitor;
import org.junit.Before; import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test; import org.junit.Test;
import org.junit.runner.RunWith; import org.junit.runner.RunWith;
import org.mockito.Mock; import org.mockito.Mock;
@@ -313,6 +314,7 @@ public class ManageApplicationsTest {
verify(adapter).filterSearch(query); verify(adapter).filterSearch(query);
} }
@Ignore("b/313583754")
@Test @Test
public void notifyItemChange_recyclerViewIdle_shouldNotify() { public void notifyItemChange_recyclerViewIdle_shouldNotify() {
final RecyclerView recyclerView = mock(RecyclerView.class); final RecyclerView recyclerView = mock(RecyclerView.class);
@@ -327,6 +329,7 @@ public class ManageApplicationsTest {
verify(adapter).notifyItemChanged(0); verify(adapter).notifyItemChanged(0);
} }
@Ignore("b/313583754")
@Test @Test
public void notifyItemChange_recyclerViewScrolling_shouldNotifyWhenIdle() { public void notifyItemChange_recyclerViewScrolling_shouldNotifyWhenIdle() {
final RecyclerView recyclerView = mock(RecyclerView.class); final RecyclerView recyclerView = mock(RecyclerView.class);
@@ -423,6 +426,7 @@ public class ManageApplicationsTest {
assertThat(adapter.getItemCount()).isEqualTo(5); assertThat(adapter.getItemCount()).isEqualTo(5);
} }
@Ignore("b/313583754")
@Test @Test
public void applicationsAdapter_filterSearch_noMatch_shouldShowEmptyList() { public void applicationsAdapter_filterSearch_noMatch_shouldShowEmptyList() {
final ManageApplications.ApplicationsAdapter adapter = final ManageApplications.ApplicationsAdapter adapter =