Searched refs:lightResult (Results 1 – 2 of 2) sorted by relevance
45 LightInvocationResult lightResult = new LightInvocationResult(fullResult); in testLightInvocationResultInstatiate() local48 ResultHandlerTest.checkLightResult(lightResult); in testLightInvocationResultInstatiate()
408 IInvocationResult lightResult = lightResults.get(0); in testGetLightResults() local409 checkLightResult(lightResult); in testGetLightResults()483 static void checkLightResult(IInvocationResult lightResult) throws Exception { in checkLightResult() argument484 assertEquals("Expected 3 passes", 3, lightResult.countResults(TestStatus.PASS)); in checkLightResult()485 assertEquals("Expected 1 failure", 1, lightResult.countResults(TestStatus.FAIL)); in checkLightResult()487 Map<String, String> buildInfo = lightResult.getInvocationInfo(); in checkLightResult()492 Set<String> serials = lightResult.getDeviceSerials(); in checkLightResult()497 assertEquals("Incorrect start time", START_MS, lightResult.getStartTime()); in checkLightResult()498 assertEquals("Incorrect test plan", SUITE_PLAN, lightResult.getTestPlan()); in checkLightResult()499 List<IModuleResult> modules = lightResult.getModules(); in checkLightResult()[all …]