Searched refs:docMap (Results 1 – 8 of 8) sorted by relevance
/tools/tradefederation/core/javatests/com/android/tradefed/testtype/mobly/ |
D | MoblyYamlResultParserTest.java | 256 Map<String, Object> docMap = buildTestRecordDocMap(detailMap); in testParseDocumentMapRecordPass() local 257 IMoblyYamlResultHandler.ITestResult result = mParser.parseDocumentMap(docMap); in testParseDocumentMapRecordPass() 272 Map<String, Object> docMap = buildTestRecordDocMap(detailMap); in testParseDocumentMapRecordFail() local 273 IMoblyYamlResultHandler.ITestResult result = mParser.parseDocumentMap(docMap); in testParseDocumentMapRecordFail() 286 Map<String, Object> docMap = new HashMap<>(); in testParseDocumentMapSummary() local 287 docMap.put("Type", "Summary"); in testParseDocumentMapSummary() 288 docMap.put("Executed", "10"); in testParseDocumentMapSummary() 289 docMap.put("Skipped", "0"); in testParseDocumentMapSummary() 290 IMoblyYamlResultHandler.ITestResult result = mParser.parseDocumentMap(docMap); in testParseDocumentMapSummary() 299 Map<String, Object> docMap = new HashMap<>(); in testParseDocumentMapControllerInfo() local [all …]
|
/tools/tradefederation/core/test_framework/com/android/tradefed/testtype/mobly/ |
D | MoblyYamlResultRecordHandler.java | 32 public Record handle(Map<String, Object> docMap) { in handle() argument 34 builder.setTestClass(String.valueOf(docMap.get(TEST_CLASS))); in handle() 35 builder.setTestName(String.valueOf(docMap.get(TEST_NAME))); in handle() 36 builder.setResult(RecordResult.valueOf((String) docMap.get(RESULT))); in handle() 37 builder.setBeginTime(String.valueOf(docMap.get(BEGIN_TIME))); in handle() 38 builder.setEndTime(String.valueOf(docMap.get(END_TIME))); in handle() 39 builder.setStackTrace(String.valueOf(docMap.get(STACKTRACE))); in handle()
|
D | MoblyYamlResultParser.java | 78 Map<String, Object> docMap = (Map<String, Object>) doc; in parse() local 79 resultCache.add(parseDocumentMap(docMap)); in parse() 93 protected ITestResult parseDocumentMap(Map<String, Object> docMap) in parseDocumentMap() argument 95 LogUtil.CLog.d("Parsed object: %s", docMap.toString()); in parseDocumentMap() 96 String docType = String.valueOf(docMap.get(TYPE)); in parseDocumentMap() 100 return resultHandler.handle(docMap); in parseDocumentMap()
|
D | MoblyYamlResultSummaryHandler.java | 28 public Summary handle(Map<String, Object> docMap) { in handle() argument 30 builder.setExecuted(String.valueOf(docMap.get(EXECUTED))); in handle() 31 builder.setSkipped(String.valueOf(docMap.get(SKIPPED))); in handle()
|
D | MoblyYamlResultUserDataHandler.java | 27 public UserData handle(Map<String, Object> docMap) { in handle() argument 29 builder.setTimestamp(String.valueOf(docMap.get(TIME_STAMP))); in handle()
|
D | MoblyYamlResultControllerInfoHandler.java | 27 public ControllerInfo handle(Map<String, Object> docMap) { in handle() argument 29 builder.setTimestamp(String.valueOf(docMap.get(TIME_STAMP))); in handle()
|
D | IMoblyYamlResultHandler.java | 25 ITestResult handle(Map<String, Object> docMap); in handle() argument
|
D | MoblyYamlResultTestNameListHandler.java | 25 public TestNameList handle(Map<String, Object> docMap) { in handle() argument
|