use of com.android.settingslib.drawable.UserIconDrawable in project android_packages_apps_Settings by omnirom.
the class SecondaryUserControllerTest method setIcon_doesntNpeOnNullPreference.
@Test
public void setIcon_doesntNpeOnNullPreference() {
final SparseArray<Drawable> icons = new SparseArray<>();
final UserIconDrawable drawable = mock(UserIconDrawable.class);
mPrimaryUser.name = TEST_NAME;
mPrimaryUser.id = 10;
icons.put(mPrimaryUser.id, drawable);
mController.handleUserIcons(icons);
// Doesn't crash
}
Aggregations