Home
last modified time | relevance | path

Searched refs:SHOW_NEW_ALERT_ACTION (Results 1 – 2 of 2) sorted by relevance

/packages/apps/CellBroadcastReceiver/tests/unit/src/com/android/cellbroadcastreceiver/
DCellBroadcastAlertServiceTest.java20 import static com.android.cellbroadcastreceiver.CellBroadcastAlertService.SHOW_NEW_ALERT_ACTION;
116 assertEquals(SHOW_NEW_ALERT_ACTION, mServiceIntentToVerify.getAction()); in testHandleCellBroadcastIntent()
128 intent.setAction(SHOW_NEW_ALERT_ACTION); in testShowNewAlert()
157 assertEquals(SHOW_NEW_ALERT_ACTION, mServiceIntentToVerify.getAction()); in testDuplicateMessage()
196 assertEquals(SHOW_NEW_ALERT_ACTION, mServiceIntentToVerify.getAction()); in testNonDuplicateMessage()
/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
DCellBroadcastAlertService.java70 static final String SHOW_NEW_ALERT_ACTION = "cellbroadcastreceiver.SHOW_NEW_ALERT"; field in CellBroadcastAlertService
189 } else if (SHOW_NEW_ALERT_ACTION.equals(action)) { in onStartCommand()
371 final Intent alertIntent = new Intent(SHOW_NEW_ALERT_ACTION); in handleCellBroadcastIntent()