blob: 8f53f7db40831c72a118c6b33d335fdaac845e5d [file] [log] [blame]
/*
* Copyright (C) 2016 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package android.telephony.cts.preconditions.app;
import android.content.Context;
import android.content.pm.PackageManager;
import android.test.AndroidTestCase;
import com.android.compatibility.common.preconditions.TelephonyHelper;
/**
* A test to verify that device-side preconditions are met for CTS
*/
public class TelephonyPreparerAppTest extends AndroidTestCase {
private static final String TAG = "TelephonyPreparerAppTest";
/**
* Test if device has a valid phone number
* @throws Exception
*/
public void testPhoneNumberPresent() throws Exception {
PackageManager pm = this.getContext().getPackageManager();
if (!pm.hasSystemFeature(PackageManager.FEATURE_TELEPHONY)) {
return; // do not test for phone number on devices without telephony feature
}
assertTrue("Device must have a SIM card with phone number in order to run CTS",
TelephonyHelper.hasPhoneNumber(this.getContext()));
}
}