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

  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowMediaPlayer.java 50 * * Construction-time callback hook {@link CreateListener} so that
99 * @see #setCreateListener(CreateListener)
101 protected static CreateListener createListener;
393 public static interface CreateListener {
553 if (createListener != null) {
554 createListener.onCreate(player, this);
    [all...]
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowMediaPlayerTest.java 122 ShadowMediaPlayer.CreateListener createListener = Mockito
123 .mock(ShadowMediaPlayer.CreateListener.class);
124 ShadowMediaPlayer.setCreateListener(createListener);
129 Mockito.verify(createListener).onCreate(newPlayer, shadow);
    [all...]

Completed in 484 milliseconds