Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8e93f66f authored by Michael Chan's avatar Michael Chan
Browse files

Fix build

Change-Id: I3480b0c51dc15f7e87118959afc7f8e0dca7c53a
parent 429d98f0
Loading
Loading
Loading
Loading
+15 −16
Original line number Diff line number Diff line
@@ -21,7 +21,6 @@ import static android.app.Notification.PRIORITY_HIGH;
import static android.app.Notification.PRIORITY_MIN;

import android.app.AlarmManager;
import android.app.PendingIntent;
import android.content.SharedPreferences;
import android.database.MatrixCursor;
import android.provider.CalendarContract.Attendees;
@@ -47,8 +46,7 @@ public class AlertServiceTest extends AndroidTestCase {

    class MockSharedPreferences implements SharedPreferences {

        /* "always", "silent", depends on ringer mode */
        private String mVibrateWhen;
        private Boolean mVibrate;
        private String mRingtone;
        private Boolean mPopup;

@@ -66,14 +64,14 @@ public class AlertServiceTest extends AndroidTestCase {
        }

        void init() {
            mVibrateWhen = "always";
            mVibrate = true;
            mRingtone = "/some/cool/ringtone";
            mPopup = true;
        }

        @Override
        public boolean contains(String key) {
            if (GeneralPreferences.KEY_ALERTS_VIBRATE_WHEN.equals(key)) {
            if (GeneralPreferences.KEY_ALERTS_VIBRATE.equals(key)) {
                return true;
            }
            return false;
@@ -81,6 +79,17 @@ public class AlertServiceTest extends AndroidTestCase {

        @Override
        public boolean getBoolean(String key, boolean defValue) {
            if (GeneralPreferences.KEY_ALERTS_VIBRATE.equals(key)) {
                if (mVibrate == null) {
                    Assert.fail(GeneralPreferences.KEY_ALERTS_VIBRATE
                            + " fetched more than once.");
                }
                boolean val = mVibrate;
                if (mStrict) {
                    mVibrate = null;
                }
                return val;
            }
            if (GeneralPreferences.KEY_ALERTS_POPUP.equals(key)) {
                if (mPopup == null) {
                    Assert.fail(GeneralPreferences.KEY_ALERTS_POPUP + " fetched more than once.");
@@ -96,17 +105,6 @@ public class AlertServiceTest extends AndroidTestCase {

        @Override
        public String getString(String key, String defValue) {
            if (GeneralPreferences.KEY_ALERTS_VIBRATE_WHEN.equals(key)) {
                if (mVibrateWhen == null) {
                    Assert.fail(GeneralPreferences.KEY_ALERTS_VIBRATE_WHEN
                            + " fetched more than once.");
                }
                String val = mVibrateWhen;
                if (mStrict) {
                    mVibrateWhen = null;
                }
                return val;
            }
            if (GeneralPreferences.KEY_ALERTS_RINGTONE.equals(key)) {
                if (mRingtone == null) {
                    Assert.fail(GeneralPreferences.KEY_ALERTS_RINGTONE
@@ -377,6 +375,7 @@ public class AlertServiceTest extends AndroidTestCase {
            assertNull("Unexpected cancel for id " + id, mExpectedNotifications[id]);
        }

        @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);