Home
last modified time | relevance | path

Searched refs:BOARD_FIRST_API_LEVEL (Results 1 – 2 of 2) sorted by relevance

/test/suite_harness/common/host-side/util/tests/src/com/android/compatibility/common/util/
DPropertyUtilTest.java37 private static final String BOARD_FIRST_API_LEVEL = "ro.board.first_api_level"; field in PropertyUtilTest
73 when(mMockDevice.getProperty(BOARD_FIRST_API_LEVEL)).thenReturn("31"); in testGetVendorApiLevelFromBoardFirstApiLevel()
81 when(mMockDevice.getProperty(BOARD_FIRST_API_LEVEL)).thenReturn(null); in testGetVendorApiLevelFromVndkVersion()
90 when(mMockDevice.getProperty(BOARD_FIRST_API_LEVEL)).thenReturn(null); in testGetVendorApiLevelCurrent()
99 when(mMockDevice.getProperty(BOARD_FIRST_API_LEVEL)).thenReturn("30"); in testIsVendorApiLevelNewerThan()
115 when(mMockDevice.getProperty(BOARD_FIRST_API_LEVEL)).thenReturn(null); in testGetVsrApiLevelEmptyBoardVersions()
125 when(mMockDevice.getProperty(BOARD_FIRST_API_LEVEL)).thenReturn("30"); in testGetVsrApiLevelFromBoardVersions()
/test/suite_harness/common/host-side/util/src/com/android/compatibility/common/util/
DPropertyUtil.java39 private static final String BOARD_FIRST_API_LEVEL = "ro.board.first_api_level"; field in PropertyUtil
95 String[] boardApiLevelProps = {BOARD_API_LEVEL, BOARD_FIRST_API_LEVEL}; in getVsrApiLevel()
120 BOARD_API_LEVEL, BOARD_FIRST_API_LEVEL, VNDK_VERSION, in getVendorApiLevel()