1 /*
2  * Copyright (C) 2017 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 
18 package com.android.settings.deviceinfo;
19 
20 import android.content.Intent;
21 
22 import androidx.test.InstrumentationRegistry;
23 import androidx.test.filters.SmallTest;
24 import androidx.test.rule.ActivityTestRule;
25 import androidx.test.runner.AndroidJUnit4;
26 
27 import com.android.settings.Settings;
28 
29 import org.junit.Ignore;
30 import org.junit.Rule;
31 import org.junit.Test;
32 import org.junit.runner.RunWith;
33 
34 @RunWith(AndroidJUnit4.class)
35 @SmallTest
36 public class PublicVolumeSettingsTest {
37     @Rule
38     public ActivityTestRule<Settings.PublicVolumeSettingsActivity> mActivityRule =
39             new ActivityTestRule<>(Settings.PublicVolumeSettingsActivity.class, true, true);
40 
41     @Test
42     @Ignore
test_invalidSetupDoesNotCrashSettings()43     public void test_invalidSetupDoesNotCrashSettings() {
44         Intent intent = new Intent();
45         intent.setAction(android.provider.Settings.ACTION_INTERNAL_STORAGE_SETTINGS);
46         intent.setClassName(InstrumentationRegistry.getTargetContext().getPackageName(),
47                 Settings.PublicVolumeSettingsActivity.class.getName());
48         mActivityRule.launchActivity(intent);
49 
50         // Should exit gracefully without crashing.
51     }
52 }
53