Home
last modified time | relevance | path

Searched refs:getIntProperty (Results 1 – 5 of 5) sorted by relevance

/tools/tradefederation/core/javatests/com/android/tradefed/testtype/suite/module/
DShippingApiLevelModuleControllerTest.java75 when(mMockDevice.getIntProperty(SYSTEM_SHIPPING_API_LEVEL_PROP, VALUE_NOT_FOUND)) in testMinApiLevelHigherThanProductFirstApiLevel()
91 when(mMockDevice.getIntProperty(SYSTEM_SHIPPING_API_LEVEL_PROP, VALUE_NOT_FOUND)) in testMinApiLevelHigherThanBoardFirstApiLevel()
104 when(mMockDevice.getIntProperty(SYSTEM_SHIPPING_API_LEVEL_PROP, VALUE_NOT_FOUND)) in testBoardApiLevelsNotFound()
119 when(mMockDevice.getIntProperty(SYSTEM_SHIPPING_API_LEVEL_PROP, VALUE_NOT_FOUND)) in testApiLevelsNotFound()
121 when(mMockDevice.getIntProperty(SYSTEM_API_LEVEL_PROP, VALUE_NOT_FOUND)).thenReturn(26L); in testApiLevelsNotFound()
133 when(mMockDevice.getIntProperty(VSR_VENDOR_API_LEVEL_PROP, VALUE_NOT_FOUND)) in testVsrMinApiLevelHigherThanBoardFirstApiLevel()
149 when(mMockDevice.getIntProperty(SYSTEM_SHIPPING_API_LEVEL_PROP, VALUE_NOT_FOUND)) in testVsrBoardApiLevelsNotFound()
151 when(mMockDevice.getIntProperty(VSR_VENDOR_API_LEVEL_PROP, VALUE_NOT_FOUND)) in testVsrBoardApiLevelsNotFound()
153 when(mMockDevice.getIntProperty(VENDOR_API_LEVEL_PROP, VALUE_NOT_FOUND)) in testVsrBoardApiLevelsNotFound()
155 when(mMockDevice.getIntProperty(VENDOR_SHIPPING_API_LEVEL_PROP, VALUE_NOT_FOUND)) in testVsrBoardApiLevelsNotFound()
[all …]
/tools/tradefederation/core/src/com/android/tradefed/testtype/suite/module/
DShippingApiLevelModuleController.java74 long apiLevel = device.getIntProperty(prop, VALUE_NOT_FOUND); in shouldRunTestWithApiLevels()
130 device.getIntProperty(VSR_VENDOR_API_LEVEL_PROP, VALUE_NOT_FOUND); in shouldRun()
/tools/tradefederation/core/device_build_interfaces/com/android/tradefed/device/
DINativeDevice.java105 public long getIntProperty(String name, long defaultValue) throws DeviceNotAvailableException; in getIntProperty() method
/tools/tradefederation/core/javatests/com/android/tradefed/device/
DNativeDeviceTest.java2406 assertEquals(123, spy.getIntProperty("ro.test.prop", -1)); in testGetIntProperty()
2414 assertEquals(-1, spy.getIntProperty("ro.test.prop", -1)); in testGetIntPropertyNotAnIntegerPropertyReturnsDefaultValue()
2422 assertEquals(-1, spy.getIntProperty("ro.test.prop", -1)); in testGetIntPropertyUnknownPropertyReturnsDefaultValue()
/tools/tradefederation/core/src/com/android/tradefed/device/
DNativeDevice.java741 public long getIntProperty(String name, long defaultValue) throws DeviceNotAvailableException { in getIntProperty() method in NativeDevice