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.java275 for (ICaseResult otherCaseResult : otherModuleResult.getResults()) { in mergeFrom()
276 ICaseResult caseResult = getOrCreateResult(otherCaseResult.getName()); in mergeFrom()
277 caseResult.mergeFrom(otherCaseResult); in mergeFrom()
DICaseResult.java61 void mergeFrom(ICaseResult otherCaseResult); in mergeFrom() argument
/cts/common/host-side/util/tests/src/com/android/compatibility/common/util/
DModuleResultTest.java93 ICaseResult otherCaseResult = otherResult.getOrCreateResult(CLASS); in testMergeModule() local
94 otherCaseResult.getOrCreateResult(METHOD_1).passed(null); in testMergeModule()
95 otherCaseResult.getOrCreateResult(METHOD_2).passed(null); in testMergeModule()
96 otherCaseResult.getOrCreateResult(METHOD_3).passed(null); in testMergeModule()