Loading core/tests/coretests/src/com/android/internal/app/ChooserActivityTest.java +8 −1 Original line number Diff line number Diff line Loading @@ -3073,8 +3073,15 @@ public class ChooserActivityTest { // framework code on the device is up-to-date. // TODO: is there a better way to do this? (Other than abandoning inheritance-based DI wrapper?) private int getRuntimeResourceId(String name, String defType) { int id = mActivityRule.getActivity().getResources().getIdentifier(name, defType, "android"); int id = -1; if (ChooserActivityOverrideData.getInstance().resources != null) { id = ChooserActivityOverrideData.getInstance().resources.getIdentifier( name, defType, "android"); } else { id = mActivityRule.getActivity().getResources().getIdentifier(name, defType, "android"); } assertThat(id, greaterThan(0)); return id; } } Loading
core/tests/coretests/src/com/android/internal/app/ChooserActivityTest.java +8 −1 Original line number Diff line number Diff line Loading @@ -3073,8 +3073,15 @@ public class ChooserActivityTest { // framework code on the device is up-to-date. // TODO: is there a better way to do this? (Other than abandoning inheritance-based DI wrapper?) private int getRuntimeResourceId(String name, String defType) { int id = mActivityRule.getActivity().getResources().getIdentifier(name, defType, "android"); int id = -1; if (ChooserActivityOverrideData.getInstance().resources != null) { id = ChooserActivityOverrideData.getInstance().resources.getIdentifier( name, defType, "android"); } else { id = mActivityRule.getActivity().getResources().getIdentifier(name, defType, "android"); } assertThat(id, greaterThan(0)); return id; } }