Home
last modified time | relevance | path

Searched refs:process_test_result (Results 1 – 5 of 5) sorted by relevance

/tools/asuite/atest/test_runners/
Devent_handler_unittest.py349 self.mock_reporter.process_test_result.assert_has_calls([call1, call2])
370 self.mock_reporter.process_test_result.assert_has_calls([call])
391 self.mock_reporter.process_test_result.assert_has_calls([call])
412 self.mock_reporter.process_test_result.assert_has_calls([call])
434 self.mock_reporter.process_test_result.assert_has_calls([call])
490 self.mock_reporter.process_test_result.assert_has_calls([call1, call2])
553 self.mock_reporter.process_test_result.assert_has_calls(
Devent_handler.py143 self.reporter.process_test_result(
161 self.reporter.process_test_result(
225 self.reporter.process_test_result(
300 reporter.process_test_result(
Dmobly_test_runner.py791 reporter.process_test_result(test_result)
/tools/asuite/atest/
Dresult_reporter_unittest.py266 self.rr.process_test_result(RESULT_PASSED_TEST)
275 self.rr.process_test_result(RESULT_FAILED_TEST)
281 self.rr.process_test_result(RESULT_PASSED_TEST_MODULE_2)
286 self.rr.process_test_result(RESULT_PASSED_TEST_RUNNER_2_NO_MODULE)
461 self.rr.process_test_result(RESULT_PASSED_TEST)
464 self.rr.process_test_result(RESULT_FAILED_TEST)
467 self.rr.process_test_result(RESULT_PASSED_TEST_MODULE_2)
476 self.rr.process_test_result(RESULT_PASSED_TEST)
479 self.rr.process_test_result(RESULT_RUN_FAILURE)
482 self.rr.process_test_result(RESULT_PASSED_TEST_MODULE_2)
Dresult_reporter.py317 def process_test_result(self, test): member in ResultReporter