Searched refs:batteryFuture (Results 1 – 2 of 2) sorted by relevance
548 SettableFuture<Integer> batteryFuture = SettableFuture.create();549 batteryFuture.set(battery);550 EasyMock.expect(mMockDevice.getBattery()).andStubReturn(batteryFuture);
560 Future<Integer> batteryFuture = device.getBattery(); in getBatteryLevel() local562 return batteryFuture.get(500, TimeUnit.MILLISECONDS); in getBatteryLevel()