HomeSort by relevance Sort by last modified time
    Searched refs:manifestShortcuts (Results 1 - 2 of 2) sorted by null

  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowShortcutManager.java 28 private List<ShortcutInfo> manifestShortcuts = ImmutableList.of();
108 return manifestShortcuts;
112 public void setManifestShortcuts(List<ShortcutInfo> manifestShortcuts) {
113 this.manifestShortcuts = manifestShortcuts;
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowShortcutManagerTest.java 186 ImmutableList<ShortcutInfo> manifestShortcuts = ImmutableList.of(createShortcut("id1"));
188 shadowShortcutManager.setManifestShortcuts(manifestShortcuts);
189 assertThat(shortcutManager.getManifestShortcuts()).isEqualTo(manifestShortcuts);

Completed in 423 milliseconds