Home
last modified time | relevance | path

Searched refs:otherCaseResult (Results 1 – 4 of 4) sorted by relevance

/cts/common/util/src/com/android/compatibility/common/util/
DCaseResult.java119 public void mergeFrom(ICaseResult otherCaseResult) { in mergeFrom() argument
120 if (!otherCaseResult.getName().equals(getName())) { in mergeFrom()
123 otherCaseResult.getName(), getName())); in mergeFrom()
126 for (ITestResult otherTestResult : otherCaseResult.getResults()) { in mergeFrom()
DModuleResult.java163 for (ICaseResult otherCaseResult : otherModuleResult.getResults()) { in mergeFrom()
164 ICaseResult caseResult = getOrCreateResult(otherCaseResult.getName()); in mergeFrom()
165 caseResult.mergeFrom(otherCaseResult); in mergeFrom()
DICaseResult.java61 void mergeFrom(ICaseResult otherCaseResult); in mergeFrom() argument
/cts/common/util/tests/src/com/android/compatibility/common/util/
DModuleResultTest.java91 ICaseResult otherCaseResult = otherResult.getOrCreateResult(CLASS); in testMergeModule() local
92 otherCaseResult.getOrCreateResult(METHOD_1).passed(null); in testMergeModule()
93 otherCaseResult.getOrCreateResult(METHOD_2).passed(null); in testMergeModule()
94 otherCaseResult.getOrCreateResult(METHOD_3).passed(null); in testMergeModule()