HomeSort by relevance Sort by last modified time
    Searched refs:notificationManager (Results 1 - 25 of 27) sorted by null

1 2

  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
NotificationManagerTest.java 4 import android.app.NotificationManager;
18 private NotificationManager notificationManager;
23 notificationManager = (NotificationManager) Robolectric.application.getSystemService(Context.NOTIFICATION_SERVICE);
28 notificationManager.notify(1, notification1);
29 assertEquals(1, shadowOf(notificationManager).size());
30 assertEquals(notification1, shadowOf(notificationManager).getNotification(1));
32 notificationManager.notify(31, notification2);
33 assertEquals(2, shadowOf(notificationManager).size())
    [all...]