Home | History | Annotate | Download | only in cts
      1 /*
      2  * Copyright (C) 2015 The Android Open Source Project
      3  *
      4  * Licensed under the Apache License, Version 2.0 (the "License");
      5  * you may not use this file except in compliance with the License.
      6  * You may obtain a copy of the License at
      7  *
      8  *      http://www.apache.org/licenses/LICENSE-2.0
      9  *
     10  * Unless required by applicable law or agreed to in writing, software
     11  * distributed under the License is distributed on an "AS IS" BASIS,
     12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     13  * See the License for the specific language governing permissions and
     14  * limitations under the License.
     15  */
     16 
     17 package android.alarmclock.cts;
     18 
     19 import android.alarmclock.common.Utils;
     20 import android.alarmclock.common.Utils.TestcaseType;
     21 
     22 public class SnoozeAlarmTest extends AlarmClockTestBase {
     23     public SnoozeAlarmTest() {
     24         super();
     25     }
     26 
     27     public void testAll() throws Exception {
     28         String result = runTest(TestcaseType.SNOOZE_ALARM);
     29         // Since there is no way to figure out if there is a currently-firing alarm,
     30         // we should expect either of the 2 results:
     31         //      Utils.COMPLETION_RESULT
     32         //      Utils.ABORT_RESULT
     33         // For CTS test purposes, all we can do is to know that snooze-alarm intent
     34         // was picked up and processed by the voice_interaction_service and the associated app.
     35         // The above call to runTest() would have failed the test otherwise.
     36         assertTrue(result.equals(Utils.ABORT_RESULT) || result.equals(Utils.COMPLETION_RESULT));
     37     }
     38 }
     39