Home
last modified time | relevance | path

Searched refs:lightResult (Results 1 – 2 of 2) sorted by relevance

/cts/common/util/tests/src/com/android/compatibility/common/util/
DLightInvocationResultTest.java45 LightInvocationResult lightResult = new LightInvocationResult(fullResult); in testLightInvocationResultInstatiate() local
48 ResultHandlerTest.checkLightResult(lightResult); in testLightInvocationResultInstatiate()
DResultHandlerTest.java209 IInvocationResult lightResult = lightResults.get(0); in testGetLightResults() local
210 checkLightResult(lightResult); in testGetLightResults()
262 static void checkLightResult(IInvocationResult lightResult) throws Exception { in checkLightResult() argument
263 assertEquals("Expected 3 passes", 3, lightResult.countResults(TestStatus.PASS)); in checkLightResult()
264 assertEquals("Expected 1 failure", 1, lightResult.countResults(TestStatus.FAIL)); in checkLightResult()
266 Map<String, String> buildInfo = lightResult.getInvocationInfo(); in checkLightResult()
271 Set<String> serials = lightResult.getDeviceSerials(); in checkLightResult()
276 assertEquals("Incorrect start time", START_MS, lightResult.getStartTime()); in checkLightResult()
277 assertEquals("Incorrect test plan", SUITE_PLAN, lightResult.getTestPlan()); in checkLightResult()
278 List<IModuleResult> modules = lightResult.getModules(); in checkLightResult()
[all …]