Home | History | Annotate | Download | only in device

Lines Matching defs:isWifiEnabled

773         EasyMock.expect(mMockWifi.isWifiEnabled()).andReturn(true);
787 EasyMock.expect(mMockWifi.isWifiEnabled()).andReturn(false);
794 * Unit test for {@link NativeDevice#isWifiEnabled()}.
797 EasyMock.expect(mMockWifi.isWifiEnabled()).andReturn(true);
799 assertTrue(mTestDevice.isWifiEnabled());
804 * Unit test for {@link NativeDevice#isWifiEnabled()} with runtime exception from
808 EasyMock.expect(mMockWifi.isWifiEnabled()).andThrow(new RuntimeException());
810 assertFalse(mTestDevice.isWifiEnabled());