Merge "WifiManagerTest: check softap mode supported" into oc-dev
am: a2283cd312
Change-Id: I4c928c2fc4a639b94bb7d6f0bbf8762a2d8fe1ba
This commit is contained in:
@@ -789,6 +789,11 @@ public class WifiManagerTest extends AndroidTestCase {
|
||||
* Note: Location mode must be enabled for this test.
|
||||
*/
|
||||
public void testStartLocalOnlyHotspotSuccess() {
|
||||
// first check that softap mode is supported by the device
|
||||
if (!mWifiManager.isPortableHotspotSupported()) {
|
||||
return;
|
||||
}
|
||||
|
||||
boolean wifiEnabled = mWifiManager.isWifiEnabled();
|
||||
|
||||
TestLocalOnlyHotspotCallback callback = startLocalOnlyHotspot();
|
||||
@@ -809,6 +814,11 @@ public class WifiManagerTest extends AndroidTestCase {
|
||||
* Note: Location mode must be enabled for this test.
|
||||
*/
|
||||
public void testSetWifiEnabledByAppDoesNotStopHotspot() {
|
||||
// first check that softap mode is supported by the device
|
||||
if (!mWifiManager.isPortableHotspotSupported()) {
|
||||
return;
|
||||
}
|
||||
|
||||
boolean wifiEnabled = mWifiManager.isWifiEnabled();
|
||||
|
||||
TestLocalOnlyHotspotCallback callback = startLocalOnlyHotspot();
|
||||
@@ -828,6 +838,11 @@ public class WifiManagerTest extends AndroidTestCase {
|
||||
* Note: Location mode must be enabled for this test.
|
||||
*/
|
||||
public void testStartLocalOnlyHotspotSingleRequestByApps() {
|
||||
// first check that softap mode is supported by the device
|
||||
if (!mWifiManager.isPortableHotspotSupported()) {
|
||||
return;
|
||||
}
|
||||
|
||||
boolean caughtException = false;
|
||||
|
||||
boolean wifiEnabled = mWifiManager.isWifiEnabled();
|
||||
|
||||
Reference in New Issue
Block a user