Home
last modified time | relevance | path

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

/test/suite_harness/common/util/src/com/android/compatibility/common/util/
DTestResultHistory.java99 XmlSerializer serializer, TestResultHistory resultHistory, String testName) in serialize() argument
101 if (resultHistory == null) { in serialize()
107 String name = resultHistory.getTestName().replaceFirst(testName + ":", ""); in serialize()
112 for (ExecutionRecord execRecord : resultHistory.getExecutionRecords()) { in serialize()
DResultHandler.java551 for (TestResultHistory resultHistory : testResultHistories) { in writeResults()
552 TestResultHistory.serialize(serializer, resultHistory, r.getName()); in writeResults()
/test/suite_harness/common/util/tests/src/com/android/compatibility/common/util/
DResultHandlerTest.java319 TestResultHistory resultHistory = new TestResultHistory(METHOD_3, executionRecords); in testSerialization_whenTestResultWithTestResultHistoryWithoutParsing() local
320 resultHistories.add(resultHistory); in testSerialization_whenTestResultWithTestResultHistoryWithoutParsing()
590 for (TestResultHistory resultHistory : resultHistories) { in checkResult()
591 assertNotNull("Expected test result history", resultHistory); in checkResult()
592 assertEquals("Incorrect test name", METHOD_3, resultHistory.getTestName()); in checkResult()
594 resultHistory.getExecutionRecords()) { in checkResult()