Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 66a510d2 authored by PETER LIANG's avatar PETER LIANG Committed by Android (Google) Code Review
Browse files

Merge "Fix that the theme of "Vision Settings" was inconsistent with "Anything else?"." into tm-dev

parents b4e91fa8 d2fc78d7
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -1947,8 +1947,7 @@
        <activity android:name=".accessibility.AccessibilitySettingsForSetupWizardActivity"
                android:icon="@drawable/ic_accessibility_suggestion"
                android:label="@string/vision_settings_title"
                android:exported="true"
                android:theme="@style/GlifV3Theme.Light">
                android:exported="true">
            <intent-filter android:priority="1">
                <action android:name="android.settings.ACCESSIBILITY_SETTINGS_FOR_SUW" />
                <category android:name="android.intent.category.DEFAULT" />
+0 −45
Original line number Diff line number Diff line
/*
 * Copyright 2019 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.accessibility;

import static com.google.common.truth.Truth.assertThat;

import android.content.Intent;

import androidx.test.filters.SmallTest;

import com.android.settings.R;

import org.junit.Test;
import org.junit.runner.RunWith;
import org.robolectric.Robolectric;
import org.robolectric.RobolectricTestRunner;

@RunWith(RobolectricTestRunner.class)
@SmallTest
public class AccessibilitySettingsForSetupWizardActivityTest {

    @Test
    public void createSetupAccessibilityActivity_shouldBeSUWTheme() {
        final Intent intent = new Intent();
        AccessibilitySettingsForSetupWizardActivity activity =
                Robolectric.buildActivity(AccessibilitySettingsForSetupWizardActivity.class,
                        intent).get();

        assertThat(activity.getThemeResId()).isEqualTo(R.style.GlifV3Theme_Light);
    }
}