Home
last modified time | relevance | path

Searched refs:moduleId (Results 1 – 3 of 3) sorted by relevance

/test/suite_harness/common/host-side/tradefed/tests/src/com/android/compatibility/common/tradefed/build/
DCompatibilityBuildHelperTest.java253 String moduleId = "64MODULE1"; in testSetBusinessLogicHostFileWithModuleId() local
254 mHelper.setBusinessLogicHostFile(tmpBLFile, moduleId); in testSetBusinessLogicHostFileWithModuleId()
255 File currentBLFile = mHelper.getBusinessLogicHostFile(moduleId); in testSetBusinessLogicHostFileWithModuleId()
262 File newBLFile = helperShard.getBusinessLogicHostFile(moduleId); in testSetBusinessLogicHostFileWithModuleId()
301 String moduleId = "64MODULE1"; in testHasBusinessLogicHostFileModuleId() local
302 mBuild.setFile(BUSINESS_LOGIC_HOST_FILE + moduleId, tmpBLFile, tmpBLFile.getName()); in testHasBusinessLogicHostFileModuleId()
303 assertTrue(mHelper.hasBusinessLogicHostFile(moduleId)); in testHasBusinessLogicHostFileModuleId()
308 assertTrue(helperShard.hasBusinessLogicHostFile(moduleId)); in testHasBusinessLogicHostFileModuleId()
351 String moduleId = "64MODULE1"; in testGetBusinessLogicHostFileWithModuleId() local
352 mBuild.setFile(BUSINESS_LOGIC_HOST_FILE + moduleId, tmpBLFile, tmpBLFile.getName()); in testGetBusinessLogicHostFileWithModuleId()
[all …]
/test/suite_harness/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/build/
DCompatibilityBuildHelper.java135 public void setBusinessLogicHostFile(File hostFile, String moduleId) { in setBusinessLogicHostFile() argument
136 String key = (moduleId == null) ? "" : moduleId; in setBusinessLogicHostFile()
174 public boolean hasBusinessLogicHostFile(String moduleId) { in hasBusinessLogicHostFile() argument
175 String key = (moduleId == null) ? "" : moduleId; in hasBusinessLogicHostFile()
194 public File getBusinessLogicHostFile(String moduleId) { in getBusinessLogicHostFile() argument
195 String key = (moduleId == null) ? "" : moduleId; in getBusinessLogicHostFile()
/test/suite_harness/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/testtype/suite/
DCompatibilitySuiteModuleLoader.java57 String moduleId = AbiUtils.createId(abi.getName(), name); in addFiltersToTest() local
61 "Test in module %s must implement ITestFilterReceiver.", moduleId)); in addFiltersToTest()