- When connected to the LE Audio Device, it will display "Play XXX on LEAduioDeviceName" in Sound Settings. - When connected to the LE Audio Device, it will display the LE Audio device name in the "Take call on" list for you having a active call(Hands Free). - Remove the @Ignore annotation for all the tests and make test cases pass. Bug: 240911615 Bug: 243494881 Test: manual test Test: make RunSettingsRoboTests ROBOTEST_FILTER=AudioOutputSwitchPreferenceControllerTest Test: make RunSettingsRoboTests ROBOTEST_FILTER=HandsFreeProfileOutputPreferenceControllerTest Test: make RunSettingsRoboTests ROBOTEST_FILTER=MediaOutputPreferenceControllerTest Change-Id: I10db59b33623495a9e9933556c78e20d81e405ea
433 lines
19 KiB
Java
433 lines
19 KiB
Java
/*
|
|
* Copyright (C) 2018 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 com.android.settings.sound;
|
|
|
|
import static android.media.AudioSystem.DEVICE_OUT_BLE_HEADSET;
|
|
import static android.media.AudioSystem.DEVICE_OUT_BLUETOOTH_A2DP;
|
|
import static android.media.AudioSystem.DEVICE_OUT_EARPIECE;
|
|
import static android.media.AudioSystem.DEVICE_OUT_HEARING_AID;
|
|
|
|
import static com.google.common.truth.Truth.assertThat;
|
|
|
|
import static org.mockito.ArgumentMatchers.any;
|
|
import static org.mockito.Mockito.doReturn;
|
|
import static org.mockito.Mockito.mock;
|
|
import static org.mockito.Mockito.never;
|
|
import static org.mockito.Mockito.spy;
|
|
import static org.mockito.Mockito.verify;
|
|
import static org.mockito.Mockito.when;
|
|
|
|
import android.bluetooth.BluetoothAdapter;
|
|
import android.bluetooth.BluetoothDevice;
|
|
import android.bluetooth.BluetoothManager;
|
|
import android.content.Context;
|
|
import android.content.Intent;
|
|
import android.content.pm.ApplicationInfo;
|
|
import android.content.pm.PackageInfo;
|
|
import android.content.pm.PackageStats;
|
|
import android.media.AudioAttributes;
|
|
import android.media.AudioManager;
|
|
import android.media.VolumeProvider;
|
|
import android.media.session.MediaController;
|
|
import android.media.session.MediaSessionManager;
|
|
import android.media.session.PlaybackState;
|
|
|
|
import androidx.preference.Preference;
|
|
import androidx.preference.PreferenceManager;
|
|
import androidx.preference.PreferenceScreen;
|
|
|
|
import com.android.settings.R;
|
|
import com.android.settings.bluetooth.Utils;
|
|
import com.android.settings.testutils.shadow.ShadowAudioManager;
|
|
import com.android.settings.testutils.shadow.ShadowBluetoothUtils;
|
|
import com.android.settingslib.bluetooth.A2dpProfile;
|
|
import com.android.settingslib.bluetooth.BluetoothEventManager;
|
|
import com.android.settingslib.bluetooth.HearingAidProfile;
|
|
import com.android.settingslib.bluetooth.LeAudioProfile;
|
|
import com.android.settingslib.bluetooth.LocalBluetoothManager;
|
|
import com.android.settingslib.bluetooth.LocalBluetoothProfileManager;
|
|
import com.android.settingslib.media.MediaOutputConstants;
|
|
|
|
import org.junit.After;
|
|
import org.junit.Before;
|
|
import org.junit.Test;
|
|
import org.junit.runner.RunWith;
|
|
import org.mockito.ArgumentCaptor;
|
|
import org.mockito.Mock;
|
|
import org.mockito.MockitoAnnotations;
|
|
import org.robolectric.RobolectricTestRunner;
|
|
import org.robolectric.RuntimeEnvironment;
|
|
import org.robolectric.Shadows;
|
|
import org.robolectric.annotation.Config;
|
|
import org.robolectric.shadows.ShadowBluetoothDevice;
|
|
import org.robolectric.shadows.ShadowPackageManager;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
|
|
@RunWith(RobolectricTestRunner.class)
|
|
@Config(shadows = {
|
|
ShadowAudioManager.class,
|
|
ShadowBluetoothUtils.class,
|
|
ShadowBluetoothDevice.class}
|
|
)
|
|
public class MediaOutputPreferenceControllerTest {
|
|
private static final String TEST_KEY = "Test_Key";
|
|
private static final String TEST_DEVICE_NAME_1 = "Test_A2DP_BT_Device_NAME_1";
|
|
private static final String TEST_DEVICE_NAME_2 = "Test_A2DP_BT_Device_NAME_2";
|
|
private static final String TEST_HAP_DEVICE_NAME_1 = "Test_HAP_BT_Device_NAME_1";
|
|
private static final String TEST_HAP_DEVICE_NAME_2 = "Test_HAP_BT_Device_NAME_2";
|
|
private static final String TEST_LE_AUDIO_DEVICE_NAME_1 = "Test_LE_AUDIO_Device_NAME_1";
|
|
private static final String TEST_DEVICE_ADDRESS_1 = "00:A1:A1:A1:A1:A1";
|
|
private static final String TEST_DEVICE_ADDRESS_2 = "00:B2:B2:B2:B2:B2";
|
|
private static final String TEST_DEVICE_ADDRESS_3 = "00:C3:C3:C3:C3:C3";
|
|
private static final String TEST_DEVICE_ADDRESS_4 = "00:D4:D4:D4:D4:D4";
|
|
private static final String TEST_DEVICE_ADDRESS_5 = "00:E5:E5:E5:E5:E5";
|
|
private static final String TEST_PACKAGE_NAME = "com.test.packagename";
|
|
private static final String TEST_APPLICATION_LABEL = "APP Test Label";
|
|
|
|
@Mock
|
|
private LocalBluetoothManager mLocalManager;
|
|
@Mock
|
|
private BluetoothEventManager mBluetoothEventManager;
|
|
@Mock
|
|
private LocalBluetoothProfileManager mLocalBluetoothProfileManager;
|
|
@Mock
|
|
private A2dpProfile mA2dpProfile;
|
|
@Mock
|
|
private HearingAidProfile mHearingAidProfile;
|
|
@Mock
|
|
private LeAudioProfile mLeAudioProfile;
|
|
@Mock
|
|
private AudioSwitchPreferenceController.AudioSwitchCallback mAudioSwitchPreferenceCallback;
|
|
@Mock
|
|
private MediaSessionManager mMediaSessionManager;
|
|
@Mock
|
|
private MediaController mMediaController;
|
|
|
|
private Context mContext;
|
|
private PreferenceScreen mScreen;
|
|
private Preference mPreference;
|
|
private AudioManager mAudioManager;
|
|
private ShadowAudioManager mShadowAudioManager;
|
|
private BluetoothManager mBluetoothManager;
|
|
private BluetoothAdapter mBluetoothAdapter;
|
|
private BluetoothDevice mBluetoothDevice;
|
|
private BluetoothDevice mSecondBluetoothDevice;
|
|
private BluetoothDevice mLeftBluetoothHapDevice;
|
|
private BluetoothDevice mRightBluetoothHapDevice;
|
|
private LocalBluetoothManager mLocalBluetoothManager;
|
|
private MediaOutputPreferenceController mController;
|
|
private List<BluetoothDevice> mProfileConnectedDevices;
|
|
private List<BluetoothDevice> mHearingAidActiveDevices;
|
|
private List<BluetoothDevice> mLeAudioActiveDevices;
|
|
private List<MediaController> mMediaControllers = new ArrayList<>();
|
|
private MediaController.PlaybackInfo mPlaybackInfo;
|
|
private PlaybackState mPlaybackState;
|
|
private ShadowPackageManager mShadowPackageManager;
|
|
private ApplicationInfo mAppInfo;
|
|
private PackageInfo mPackageInfo;
|
|
private PackageStats mPackageStats;
|
|
|
|
@Before
|
|
public void setUp() {
|
|
MockitoAnnotations.initMocks(this);
|
|
mContext = spy(RuntimeEnvironment.application);
|
|
|
|
mAudioManager = (AudioManager) mContext.getSystemService(Context.AUDIO_SERVICE);
|
|
mShadowAudioManager = ShadowAudioManager.getShadow();
|
|
|
|
ShadowBluetoothUtils.sLocalBluetoothManager = mLocalManager;
|
|
mLocalBluetoothManager = Utils.getLocalBtManager(mContext);
|
|
|
|
doReturn(mMediaSessionManager).when(mContext).getSystemService(MediaSessionManager.class);
|
|
when(mMediaSessionManager.getActiveSessions(any())).thenReturn(mMediaControllers);
|
|
when(mMediaController.getPackageName()).thenReturn(TEST_PACKAGE_NAME);
|
|
mPlaybackInfo = new MediaController.PlaybackInfo(
|
|
MediaController.PlaybackInfo.PLAYBACK_TYPE_LOCAL,
|
|
VolumeProvider.VOLUME_CONTROL_ABSOLUTE,
|
|
100,
|
|
10,
|
|
new AudioAttributes.Builder().setUsage(AudioAttributes.USAGE_MEDIA).build(),
|
|
null);
|
|
mPlaybackState = new PlaybackState.Builder()
|
|
.setState(PlaybackState.STATE_PLAYING, 0, 1)
|
|
.build();
|
|
when(mMediaController.getPlaybackInfo()).thenReturn(mPlaybackInfo);
|
|
when(mMediaController.getPlaybackState()).thenReturn(mPlaybackState);
|
|
mMediaControllers.add(mMediaController);
|
|
|
|
when(mLocalBluetoothManager.getEventManager()).thenReturn(mBluetoothEventManager);
|
|
when(mLocalBluetoothManager.getProfileManager()).thenReturn(mLocalBluetoothProfileManager);
|
|
when(mLocalBluetoothProfileManager.getA2dpProfile()).thenReturn(mA2dpProfile);
|
|
when(mLocalBluetoothProfileManager.getHearingAidProfile()).thenReturn(mHearingAidProfile);
|
|
when(mLocalBluetoothProfileManager.getLeAudioProfile()).thenReturn(mLeAudioProfile);
|
|
|
|
mBluetoothManager = mContext.getSystemService(BluetoothManager.class);
|
|
mBluetoothAdapter = mBluetoothManager.getAdapter();
|
|
|
|
mBluetoothDevice = spy(mBluetoothAdapter.getRemoteDevice(TEST_DEVICE_ADDRESS_1));
|
|
when(mBluetoothDevice.getName()).thenReturn(TEST_DEVICE_NAME_1);
|
|
when(mBluetoothDevice.getAlias()).thenReturn(TEST_DEVICE_NAME_1);
|
|
when(mBluetoothDevice.isConnected()).thenReturn(true);
|
|
|
|
mSecondBluetoothDevice = spy(mBluetoothAdapter.getRemoteDevice(TEST_DEVICE_ADDRESS_2));
|
|
when(mSecondBluetoothDevice.getName()).thenReturn(TEST_DEVICE_NAME_2);
|
|
when(mSecondBluetoothDevice.isConnected()).thenReturn(true);
|
|
|
|
mLeftBluetoothHapDevice = spy(mBluetoothAdapter.getRemoteDevice(TEST_DEVICE_ADDRESS_3));
|
|
when(mLeftBluetoothHapDevice.getName()).thenReturn(TEST_HAP_DEVICE_NAME_1);
|
|
when(mLeftBluetoothHapDevice.getAlias()).thenReturn(TEST_HAP_DEVICE_NAME_1);
|
|
when(mLeftBluetoothHapDevice.isConnected()).thenReturn(true);
|
|
|
|
mRightBluetoothHapDevice = spy(mBluetoothAdapter.getRemoteDevice(TEST_DEVICE_ADDRESS_4));
|
|
when(mRightBluetoothHapDevice.getName()).thenReturn(TEST_HAP_DEVICE_NAME_2);
|
|
when(mRightBluetoothHapDevice.isConnected()).thenReturn(true);
|
|
|
|
mController = new MediaOutputPreferenceController(mContext, TEST_KEY);
|
|
mScreen = spy(new PreferenceScreen(mContext, null));
|
|
mPreference = new Preference(mContext);
|
|
mProfileConnectedDevices = new ArrayList<>();
|
|
mHearingAidActiveDevices = new ArrayList<>(2);
|
|
mLeAudioActiveDevices = new ArrayList<>();
|
|
|
|
when(mScreen.getPreferenceManager()).thenReturn(mock(PreferenceManager.class));
|
|
when(mScreen.getContext()).thenReturn(mContext);
|
|
when(mScreen.findPreference(mController.getPreferenceKey())).thenReturn(mPreference);
|
|
mScreen.addPreference(mPreference);
|
|
mController.displayPreference(mScreen);
|
|
mController.setCallback(mAudioSwitchPreferenceCallback);
|
|
}
|
|
|
|
@After
|
|
public void tearDown() {
|
|
ShadowBluetoothUtils.reset();
|
|
}
|
|
|
|
/**
|
|
* A2DP Bluetooth device(s) are connected, but no device is set as activated
|
|
* Preference summary should be "This device"
|
|
*/
|
|
@Test
|
|
public void updateState_withConnectedBtDevice_withoutActiveBtDevice_setDefaultSummary() {
|
|
mShadowAudioManager.setOutputDevice(DEVICE_OUT_EARPIECE);
|
|
mAudioManager.setMode(AudioManager.MODE_NORMAL);
|
|
mProfileConnectedDevices.clear();
|
|
mProfileConnectedDevices.add(mBluetoothDevice);
|
|
mProfileConnectedDevices.add(mSecondBluetoothDevice);
|
|
when(mA2dpProfile.getConnectedDevices()).thenReturn(mProfileConnectedDevices);
|
|
when(mA2dpProfile.getActiveDevice()).thenReturn(null);
|
|
|
|
assertThat(mPreference.getSummary()).isNull();
|
|
mController.updateState(mPreference);
|
|
assertThat(mPreference.getSummary()).isEqualTo(
|
|
mContext.getText(R.string.media_output_default_summary));
|
|
}
|
|
|
|
/**
|
|
* A2DP Bluetooth device(s) are connected and active
|
|
* Preference summary should be device's name
|
|
*/
|
|
@Test
|
|
public void updateState_withActiveBtDevice_setActivatedDeviceName() {
|
|
mShadowAudioManager.setOutputDevice(DEVICE_OUT_BLUETOOTH_A2DP);
|
|
mAudioManager.setMode(AudioManager.MODE_NORMAL);
|
|
mProfileConnectedDevices.clear();
|
|
mProfileConnectedDevices.add(mBluetoothDevice);
|
|
mProfileConnectedDevices.add(mSecondBluetoothDevice);
|
|
when(mA2dpProfile.getConnectedDevices()).thenReturn(mProfileConnectedDevices);
|
|
when(mA2dpProfile.getActiveDevice()).thenReturn(mBluetoothDevice);
|
|
|
|
assertThat(mPreference.getSummary()).isNull();
|
|
mController.updateState(mPreference);
|
|
assertThat(mPreference.getSummary()).isEqualTo(TEST_DEVICE_NAME_1);
|
|
}
|
|
|
|
/**
|
|
* Hearing Aid device(s) are connected and active
|
|
* Preference summary should be device's name
|
|
*/
|
|
@Test
|
|
public void updateState_withActiveHADevice_setActivatedDeviceName() {
|
|
mShadowAudioManager.setOutputDevice(DEVICE_OUT_HEARING_AID);
|
|
mAudioManager.setMode(AudioManager.MODE_NORMAL);
|
|
mHearingAidActiveDevices.clear();
|
|
mHearingAidActiveDevices.add(mLeftBluetoothHapDevice);
|
|
when(mHearingAidProfile.getConnectedDevices()).thenReturn(mHearingAidActiveDevices);
|
|
when(mHearingAidProfile.getActiveDevices()).thenReturn(mHearingAidActiveDevices);
|
|
|
|
assertThat(mPreference.getSummary()).isNull();
|
|
mController.updateState(mPreference);
|
|
assertThat(mPreference.getSummary()).isEqualTo(TEST_HAP_DEVICE_NAME_1);
|
|
|
|
}
|
|
|
|
@Test
|
|
public void updateState_withActiveLeAudioDevice_setActivatedDeviceName() {
|
|
mShadowAudioManager.setOutputDevice(DEVICE_OUT_BLE_HEADSET);
|
|
mAudioManager.setMode(AudioManager.MODE_NORMAL);
|
|
when(mBluetoothDevice.getAlias()).thenReturn(TEST_LE_AUDIO_DEVICE_NAME_1);
|
|
mProfileConnectedDevices.clear();
|
|
mProfileConnectedDevices.add(mBluetoothDevice);
|
|
mProfileConnectedDevices.add(mSecondBluetoothDevice);
|
|
mLeAudioActiveDevices.clear();
|
|
mLeAudioActiveDevices.add(mBluetoothDevice);
|
|
when(mLeAudioProfile.getConnectedDevices()).thenReturn(mProfileConnectedDevices);
|
|
when(mLeAudioProfile.getActiveDevices()).thenReturn(mLeAudioActiveDevices);
|
|
|
|
assertThat(mPreference.getSummary()).isNull();
|
|
mController.updateState(mPreference);
|
|
assertThat(mPreference.getSummary()).isEqualTo(TEST_LE_AUDIO_DEVICE_NAME_1);
|
|
}
|
|
|
|
@Test
|
|
public void updateState_noActiveLocalPlayback_noTitle() {
|
|
mPlaybackState = new PlaybackState.Builder()
|
|
.setState(PlaybackState.STATE_NONE, 0, 1)
|
|
.build();
|
|
when(mMediaController.getPlaybackState()).thenReturn(mPlaybackState);
|
|
mController = new MediaOutputPreferenceController(mContext, TEST_KEY);
|
|
|
|
mController.updateState(mPreference);
|
|
|
|
assertThat(mPreference.getTitle()).isNull();
|
|
}
|
|
|
|
@Test
|
|
public void updateState_withActiveLocalPlayback_checkTitle() {
|
|
initPackage();
|
|
mShadowPackageManager.addPackage(mPackageInfo, mPackageStats);
|
|
|
|
mController.updateState(mPreference);
|
|
|
|
assertThat(mPreference.getTitle()).isEqualTo(
|
|
mContext.getString(R.string.media_output_label_title, TEST_APPLICATION_LABEL));
|
|
}
|
|
|
|
@Test
|
|
public void click_launch_outputSwitcherSlice() {
|
|
final ArgumentCaptor<Intent> intentCaptor = ArgumentCaptor.forClass(Intent.class);
|
|
mController.handlePreferenceTreeClick(mPreference);
|
|
verify(mContext, never()).startActivity(intentCaptor.capture());
|
|
|
|
mPreference.setKey(TEST_KEY);
|
|
mController.handlePreferenceTreeClick(mPreference);
|
|
verify(mContext).sendBroadcast(intentCaptor.capture());
|
|
assertThat(intentCaptor.getValue().getAction())
|
|
.isEqualTo(MediaOutputConstants.ACTION_LAUNCH_MEDIA_OUTPUT_DIALOG);
|
|
}
|
|
|
|
/**
|
|
* Default status
|
|
* Preference should be invisible
|
|
* Summary should be default summary
|
|
*/
|
|
@Test
|
|
public void updateState_notInCall_preferenceVisible() {
|
|
mAudioManager.setMode(AudioManager.MODE_NORMAL);
|
|
|
|
mController.updateState(mPreference);
|
|
|
|
assertThat(mPreference.isVisible()).isTrue();
|
|
}
|
|
|
|
/**
|
|
* During a call
|
|
* Preference should be invisible
|
|
* Default string should be "Unavailable during calls"
|
|
*/
|
|
@Test
|
|
public void updateState_inCall_preferenceInvisible() {
|
|
mAudioManager.setMode(AudioManager.MODE_IN_COMMUNICATION);
|
|
|
|
mController.updateState(mPreference);
|
|
|
|
assertThat(mPreference.isVisible()).isFalse();
|
|
}
|
|
|
|
@Test
|
|
public void findActiveDevice_onlyA2dpDeviceActive_returnA2dpDevice() {
|
|
when(mLocalBluetoothProfileManager.getHearingAidProfile()).thenReturn(null);
|
|
when(mA2dpProfile.getActiveDevice()).thenReturn(mBluetoothDevice);
|
|
|
|
assertThat(mController.findActiveDevice()).isEqualTo(mBluetoothDevice);
|
|
}
|
|
|
|
@Test
|
|
public void findActiveDevice_allDevicesNotActive_returnNull() {
|
|
when(mLocalBluetoothProfileManager.getHearingAidProfile()).thenReturn(null);
|
|
when(mA2dpProfile.getActiveDevice()).thenReturn(null);
|
|
|
|
assertThat(mController.findActiveDevice()).isNull();
|
|
}
|
|
|
|
@Test
|
|
public void findActiveDevice_allProfilesWithActiveDevice_returnHADevice() {
|
|
BluetoothDevice btLeDevice = spy(mBluetoothAdapter.getRemoteDevice(TEST_DEVICE_ADDRESS_5));
|
|
when(btLeDevice.getName()).thenReturn(TEST_LE_AUDIO_DEVICE_NAME_1);
|
|
mLeAudioActiveDevices.clear();
|
|
mLeAudioActiveDevices.add(btLeDevice);
|
|
mHearingAidActiveDevices.clear();
|
|
mHearingAidActiveDevices.add(mLeftBluetoothHapDevice);
|
|
when(mHearingAidProfile.getActiveDevices()).thenReturn(mHearingAidActiveDevices);
|
|
when(mA2dpProfile.getActiveDevice()).thenReturn(mBluetoothDevice);
|
|
when(mLeAudioProfile.getActiveDevices()).thenReturn(mLeAudioActiveDevices);
|
|
|
|
assertThat(mController.findActiveDevice()).isEqualTo(mLeftBluetoothHapDevice);
|
|
}
|
|
|
|
@Test
|
|
public void findActiveDevice_a2dpDeviceAndLeAudioDeviceActive_returnLeAudioDevice() {
|
|
BluetoothDevice btLeDevice = spy(mBluetoothAdapter.getRemoteDevice(TEST_DEVICE_ADDRESS_5));
|
|
when(btLeDevice.getName()).thenReturn(TEST_LE_AUDIO_DEVICE_NAME_1);
|
|
mLeAudioActiveDevices.clear();
|
|
mLeAudioActiveDevices.add(btLeDevice);
|
|
mHearingAidActiveDevices.clear();
|
|
when(mHearingAidProfile.getActiveDevices()).thenReturn(mHearingAidActiveDevices);
|
|
when(mA2dpProfile.getActiveDevice()).thenReturn(mBluetoothDevice);
|
|
when(mLeAudioProfile.getActiveDevices()).thenReturn(mLeAudioActiveDevices);
|
|
|
|
assertThat(mController.findActiveDevice()).isEqualTo(btLeDevice);
|
|
}
|
|
|
|
@Test
|
|
public void findActiveDevice_onlyLeAudioDeviceActive_returnLeAudioDevice() {
|
|
BluetoothDevice btLeDevice = spy(mBluetoothAdapter.getRemoteDevice(TEST_DEVICE_ADDRESS_5));
|
|
when(btLeDevice.getName()).thenReturn(TEST_LE_AUDIO_DEVICE_NAME_1);
|
|
mLeAudioActiveDevices.clear();
|
|
mLeAudioActiveDevices.add(btLeDevice);
|
|
mHearingAidActiveDevices.clear();
|
|
when(mHearingAidProfile.getActiveDevices()).thenReturn(mHearingAidActiveDevices);
|
|
when(mA2dpProfile.getActiveDevice()).thenReturn(null);
|
|
when(mLeAudioProfile.getActiveDevices()).thenReturn(mLeAudioActiveDevices);
|
|
|
|
assertThat(mController.findActiveDevice()).isEqualTo(btLeDevice);
|
|
}
|
|
|
|
private void initPackage() {
|
|
mShadowPackageManager = Shadows.shadowOf(mContext.getPackageManager());
|
|
mAppInfo = new ApplicationInfo();
|
|
mAppInfo.flags = ApplicationInfo.FLAG_INSTALLED;
|
|
mAppInfo.packageName = TEST_PACKAGE_NAME;
|
|
mAppInfo.name = TEST_APPLICATION_LABEL;
|
|
mPackageInfo = new PackageInfo();
|
|
mPackageInfo.packageName = TEST_PACKAGE_NAME;
|
|
mPackageInfo.applicationInfo = mAppInfo;
|
|
mPackageStats = new PackageStats(TEST_PACKAGE_NAME);
|
|
}
|
|
}
|