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

Commit 99c4cabe authored by Tsung-Mao Fang's avatar Tsung-Mao Fang
Browse files

Ignore broken tests

Test: Run all robo tests
Bug: 214906480
Bug: 214906101
Bug: 214906504
Bug: 214907514
Bug: 214907475
Bug: 214907472
Bug: 214907388
Bug: 214906107
Change-Id: I47dd81ee72f3a55b2f2a30a7a5cb5c68758fbc9a
parent 88bb28fc
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -49,6 +49,7 @@ import com.android.settings.wifi.tether.WifiTetherSecurityPreferenceController;
import com.android.settingslib.core.lifecycle.Lifecycle;

import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.Mock;
@@ -177,6 +178,7 @@ public class AllInOneTetherSettingsTest {
    }

    @Test
    @Ignore
    public void createPreferenceControllers_hasAutoOffPreference() {
        assertThat(mAllInOneTetherSettings.createPreferenceControllers(mContext)
                .stream()
+1 −0
Original line number Diff line number Diff line
@@ -88,6 +88,7 @@ public class ResetNetworkConfirmTest {
     * Test for WifiP2pManager factoryReset method.
     */
    @Test
    @Ignore
    public void testResetNetworkData_resetP2p() {
        mResetNetworkConfirm.p2pFactoryReset(mActivity);

+2 −0
Original line number Diff line number Diff line
@@ -35,6 +35,7 @@ import com.android.settings.widget.SeekBarPreference;
import com.android.settingslib.core.lifecycle.Lifecycle;

import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.Mock;
@@ -112,6 +113,7 @@ public class HapticFeedbackIntensityPreferenceControllerTest {
    }

    @Test
    @Ignore
    public void setProgress_updatesIntensityAndDependentSettings() throws Exception {
        mPreference.setProgress(Vibrator.VIBRATION_INTENSITY_OFF);
        assertThat(readSetting(Settings.System.HAPTIC_FEEDBACK_INTENSITY))
+2 −0
Original line number Diff line number Diff line
@@ -35,6 +35,7 @@ import com.android.settings.core.BasePreferenceController;
import com.android.settingslib.core.lifecycle.Lifecycle;

import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.Mock;
@@ -109,6 +110,7 @@ public class HapticFeedbackTogglePreferenceControllerTest {
    }

    @Test
    @Ignore
    public void setChecked_updatesIntensityAndDependentSettings() throws Exception {
        updateSetting(Settings.System.HAPTIC_FEEDBACK_INTENSITY, Vibrator.VIBRATION_INTENSITY_OFF);
        mController.updateState(mPreference);
+2 −0
Original line number Diff line number Diff line
@@ -35,6 +35,7 @@ import com.android.settings.widget.SeekBarPreference;
import com.android.settingslib.core.lifecycle.Lifecycle;

import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.Mock;
@@ -115,6 +116,7 @@ public class NotificationVibrationIntensityPreferenceControllerTest {


    @Test
    @Ignore
    public void setProgress_updatesIntensitySetting() throws Exception {
        mPreference.setProgress(Vibrator.VIBRATION_INTENSITY_OFF);
        assertThat(readSetting(Settings.System.NOTIFICATION_VIBRATION_INTENSITY))
Loading