summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorSara Ting <sarating@google.com>2012-08-31 15:06:32 -0700
committerSara Ting <sarating@google.com>2012-08-31 15:06:32 -0700
commit7a2de3d0ba146217e19d8dba74ff82000b0e676f (patch)
treedd57a709984161622b96faade4a22e7ea1e6b633 /tests
parenta3a27fba18735a17b339afce46b12587be6f6b70 (diff)
parent013fda07b0ab9d0823097bd2050b48caf2ce5ab0 (diff)
downloadandroid_packages_apps_Calendar-7a2de3d0ba146217e19d8dba74ff82000b0e676f.tar.gz
android_packages_apps_Calendar-7a2de3d0ba146217e19d8dba74ff82000b0e676f.tar.bz2
android_packages_apps_Calendar-7a2de3d0ba146217e19d8dba74ff82000b0e676f.zip
resolved conflicts for merge of 013fda07 to ics-ub-calendar-burgundy
Change-Id: Ia398c0dc2d7eed35e9d1f172e23e0f5c38923be3
Diffstat (limited to 'tests')
-rw-r--r--tests/src/com/android/calendar/alerts/AlertServiceTest.java21
1 files changed, 1 insertions, 20 deletions
diff --git a/tests/src/com/android/calendar/alerts/AlertServiceTest.java b/tests/src/com/android/calendar/alerts/AlertServiceTest.java
index 4ba65943..ef472866 100644
--- a/tests/src/com/android/calendar/alerts/AlertServiceTest.java
+++ b/tests/src/com/android/calendar/alerts/AlertServiceTest.java
@@ -254,7 +254,7 @@ public class AlertServiceTest extends AndroidTestCase {
}
- class NotificationTestManager implements NotificationMgr {
+ class NotificationTestManager extends NotificationMgr {
// Expected notifications
NotificationInstance[] mExpectedNotifications;
NotificationWrapper[] mActualNotifications;
@@ -377,31 +377,12 @@ public class AlertServiceTest extends AndroidTestCase {
assertNull("Unexpected cancel for id " + id, mExpectedNotifications[id]);
}
- @Override
- public void cancel(String tag, int id) {
- throw new IllegalArgumentException();
- }
-
- @Override
- public void cancelAll() {
- for (int i = 0; i < mExpectedNotifications.length; i++) {
- assertNull("Expecting notification id " + i + ". Got cancelAll",
- mExpectedNotifications[i]);
- }
- }
-
- @Override
public void notify(int id, NotificationWrapper nw) {
assertTrue("id out of bound: " + id, 0 <= id);
assertTrue("id out of bound: " + id, id < mExpectedNotifications.length);
assertNull("id already used: " + id, mActualNotifications[id]);
mActualNotifications[id] = nw;
}
-
- @Override
- public void notify(String tag, int id, NotificationWrapper nw) {
- throw new IllegalArgumentException();
- }
}
private class MockAlarmManager implements AlarmManagerInterface {