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

Commit 32952e04 authored by Sundeep Ghuman's avatar Sundeep Ghuman
Browse files

Create Espresso test for WifiSettings.

This method was being stripped by proguard and hence the tests could not
run.

Bug: b/36403696
Test:  runtest --path
packages/apps/Settings/tests/app/src/com/android/settings/wifi/WifiSettingsUiTest.java

Change-Id: I30b26e960a876c0c024154bee809c0ab6e988e39
parent 60e0c195
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -6,6 +6,7 @@ LOCAL_USE_AAPT2 := true
LOCAL_MODULE := SettingsLib

LOCAL_SHARED_ANDROID_LIBRARIES := \
    android-support-annotations \
    android-support-v4 \
    android-support-v7-recyclerview \
    android-support-v7-preference \
+2 −8
Original line number Diff line number Diff line
@@ -17,6 +17,7 @@ package com.android.settingslib.wifi;

import android.content.Context;
import android.os.Looper;
import android.support.annotation.Keep;

/**
 * Factory method used to inject WifiTracker instances.
@@ -26,14 +27,7 @@ public class WifiTrackerFactory {

    private static WifiTracker sTestingWifiTracker;

    public static void enableTestingMode() {
        sTestingMode = true;
    }

    public static void disableTestingMode() {
        sTestingMode = false;
    }

    @Keep
    public static void setTestingWifiTracker(WifiTracker tracker) {
        sTestingWifiTracker = tracker;
    }