Home
last modified time | relevance | path

Searched refs:testcase (Results 1 – 12 of 12) sorted by relevance

/tools/tradefederation/core/tests/src/com/android/tradefed/result/
DTestRunResultTest.java305 TestDescription testcase = new TestDescription("Foo", "foo"); in testMergeRetriedRunResults_checkMergingStackTraces() local
312 result1.testStarted(testcase); in testMergeRetriedRunResults_checkMergingStackTraces()
313 result1.testEnded(testcase, new HashMap<String, Metric>()); in testMergeRetriedRunResults_checkMergingStackTraces()
317 result2.testStarted(testcase); in testMergeRetriedRunResults_checkMergingStackTraces()
318 result2.testFailed(testcase, "Second run failed."); in testMergeRetriedRunResults_checkMergingStackTraces()
319 result2.testEnded(testcase, new HashMap<String, Metric>()); in testMergeRetriedRunResults_checkMergingStackTraces()
323 result3.testStarted(testcase); in testMergeRetriedRunResults_checkMergingStackTraces()
324 result3.testEnded(testcase, new HashMap<String, Metric>()); in testMergeRetriedRunResults_checkMergingStackTraces()
328 result4.testStarted(testcase); in testMergeRetriedRunResults_checkMergingStackTraces()
329 result4.testFailed(testcase, "Fourth run failed."); in testMergeRetriedRunResults_checkMergingStackTraces()
[all …]
/tools/tradefederation/core/test_framework/com/android/tradefed/testtype/
DGTestXmlResultParser.java163 private void processTestResult(Element testcase) { in processTestResult() argument
164 String classname = testcase.getAttribute("classname"); in processTestResult()
165 String testname = testcase.getAttribute("name"); in processTestResult()
166 String runtime = testcase.getAttribute("time"); in processTestResult()
168 if (testcase.hasAttribute(RESULT_ATTRIBUTE)) { in processTestResult()
169 skipped = SKIPPED_VALUE.equals(testcase.getAttribute(RESULT_ATTRIBUTE)); in processTestResult()
185 if (testcase.getElementsByTagName("failure").getLength() != 0) { in processTestResult()
186 String trace = ((Element)testcase.getElementsByTagName("failure").item(0)) in processTestResult()
/tools/asuite/atest/
Datest_integration_tests.py60 def run_test(self, testcase): argument
71 'test': testcase}
98 def create_test_method(testcase, log_path): argument
108 test_function_name = 'test_%s' % testcase.replace(' ', '_')
111 self.test_passed = self.run_test(testcase)
113 failed_message = 'Running command: %s failed.\n' % testcase
/tools/tradefederation/core/atest/
Datest_integration_tests.py60 def run_test(self, testcase): argument
71 'test': testcase}
98 def create_test_method(testcase, log_path): argument
108 test_function_name = 'test_%s' % testcase.replace(' ', '_')
111 self.test_passed = self.run_test(testcase)
113 failed_message = 'Running command: %s failed.\n' % testcase
/tools/tradefederation/core/tests/src/com/android/tradefed/testtype/
DFakeTestTest.java81 for (Map.Entry<String, String> testcase : t.entrySet()) { in testDecodeRle()
82 final String input = testcase.getKey(); in testDecodeRle()
83 final String output = testcase.getValue(); in testDecodeRle()
119 for (Map.Entry<String, String> testcase : t.entrySet()) { in testDecode()
120 final String input = testcase.getKey(); in testDecode()
121 final String output = testcase.getValue(); in testDecode()
/tools/test/connectivity/acts/framework/acts/controllers/anritsu_lib/
Dmd8475_cellular_simulator.py577 testcase = self.anritsu.get_AnritsuTestCases()
581 testcase.procedure = md8475a.TestProcedure(testcase.procedure)
582 testcase.procedure = md8475a.TestProcedure.PROCEDURE_MULTICELL
583 testcase.power_control = md8475a.TestPowerControl.POWER_CONTROL_DISABLE
584 testcase.measurement_LTE = md8475a.TestMeasurement.MEASUREMENT_DISABLE
/tools/test/connectivity/acts_tests/tests/google/fuchsia/bt/pts/
DGATT_PTS_INSTRUCTIONS63 Note: Bug BT-764 would simplify this testcase.
86 Note: Bug BT-764 would simplify this testcase.
109 Note: Bug BT-764 would simplify this testcase.
152 Note: Bug BT-764 would simplify this testcase.
189 Note: Bug BT-451 would simplify this testcase.
/tools/test/connectivity/acts_tests/tests/google/bt/pts/instructions/
DGAP_PTS_INSTRUCTIONS529 Note: Run these commands before executing the testcase on PTS Side
537 Note: Run these commands before executing the testcase on PTS Side
548 Note: Run the first 4 commands before executing the testcase on PTS Side
562 Note: Run the first 4 commands before executing the testcase on PTS Side
DSM_PTS_INSTRUCTIONS202 Using Example testcase TC_SLA_KDU_BV_02_C.
207 4. Run the example testcase.
214 7. Rerun testcase.
DGATT_PTS_INSTRUCTIONS32 #Potential new instructions for SIG testcase rewrite
1385 Note: This testcase is tricky as the order randomises a bit each time...
DL2CAP_PTS_INSTRUCTIONS30 Note: Assumption that devices are paired from previous testcase
/tools/test/connectivity/acts/framework/acts/test_utils/bt/
Dbt_test_utils.py1602 def take_btsnoop_log(ad, testcase, testname): argument
1631 testcase.log.info(
1635 def take_btsnoop_logs(android_devices, testcase, testname): argument
1644 take_btsnoop_log(a, testcase, testname)