blob: 3c2c0897073a894b75f85e465208334c0e22bd3e [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 android.util.Log;
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
}
if (!TelephonyHelper.hasPhoneNumber(this.getContext())) {
Log.e(TAG, "No SIM card with phone number is found in the device, "
+ "some tests might not run properly");
}
}
}