Home
last modified time | relevance | path

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

/test/suite_harness/common/host-side/tradefed/tests/src/com/android/compatibility/common/tradefed/result/
DConsoleReporterTest.java26 import com.android.tradefed.result.TestDescription;
109 TestDescription test1 = new TestDescription(CLASS, METHOD_1); in runTests()
114 TestDescription test2 = new TestDescription(CLASS, METHOD_2); in runTests()
120 TestDescription test3 = new TestDescription(CLASS, METHOD_3); in runTests()
126 TestDescription test4 = new TestDescription(CLASS, METHOD_3); in runTests()
DMetadataReporterTest.java30 import com.android.tradefed.result.TestDescription;
123 TestDescription test1 = new TestDescription(CLASS, METHOD_1); in runTests()
127 TestDescription test2 = new TestDescription(CLASS, METHOD_2); in runTests()
131 TestDescription test3 = new TestDescription(CLASS, METHOD_3); in runTests()
136 TestDescription test4 = new TestDescription(CLASS, METHOD_3); in runTests()
/test/suite_harness/common/host-side/tradefed/tests/src/com/android/compatibility/common/tradefed/result/suite/
DTestMetricsJsonResultReporterTest.java30 import com.android.tradefed.result.TestDescription;
141 final TestDescription testId = new TestDescription("FooTest", "testFoo"); in testReportLogFileIsGenerated_Default_File_Name()
164 final TestDescription testId = new TestDescription("FooTest", "testFoo"); in testReportLogFileIsGenerated_Custom_File_Name()
190 final TestDescription testId = new TestDescription("FooTest", "testFoo"); in testReportLogValidateContent_No_Test_Name_Mapping()
217 final TestDescription testId = new TestDescription("FooTest", "testFoo"); in testReportLogValidateContent_Test_Name_Mapping_Provided()
241 final TestDescription testId = new TestDescription("FooTest", "testFoo"); in testReportLogValidateContent_Report_All_Metrics()
271 final TestDescription testId = new TestDescription("FooTest", "testFoo"); in testReportLogValidateContent_Report_Metrics_For_Given_Keys()
304 final TestDescription testId = new TestDescription("FooTest", "testFoo"); in testReportLogValidateContent_Missing_Keys()
342 final TestDescription fooTestId = new TestDescription("FooTest", "testFoo"); in testReportLogValidateContent_Multiple_Tests()
343 final TestDescription barTestId = new TestDescription("BarTest", "testBar"); in testReportLogValidateContent_Multiple_Tests()
DCertificationChecksumHelperTest.java22 import com.android.tradefed.result.TestDescription;
121 TestDescription test = new TestDescription("com.class.path", "testMethod" + i); in createFakeResults()
/test/suite_harness/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/result/
DConsoleReporter.java27 import com.android.tradefed.result.TestDescription;
96 public void testStarted(TestDescription test) { in testStarted()
106 public void testFailed(TestDescription test, String trace) { in testFailed()
116 public void testIgnored(TestDescription test) { in testIgnored()
125 public void testAssumptionFailure(TestDescription test, String trace) { in testAssumptionFailure()
134 public void testEnded(TestDescription test, HashMap<String, Metric> testMetrics) { in testEnded()
DMetadataReporter.java28 import com.android.tradefed.result.TestDescription;
99 public void testStarted(TestDescription test, long startTime) { in testStarted()
108 public void testFailed(TestDescription test, String trace) { in testFailed()
116 public void testIgnored(TestDescription test) { in testIgnored()
124 public void testAssumptionFailure(TestDescription test, String trace) { in testAssumptionFailure()
129 public void testEnded(TestDescription test, long endTime, HashMap<String, Metric> testMetrics) { in testEnded()
171 private static String buildTestId(TestDescription test) { in buildTestId()
/test/suite_harness/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/result/suite/
DCertificationChecksumHelper.java19 import com.android.tradefed.result.TestDescription;
140 for (Entry<TestDescription, TestResult> caseResult in addResults()
168 Entry<TestDescription, TestResult> testResult, TestRunResult module, in generateTestResultSignature() argument
DTestMetricsJsonResultReporter.java39 import com.android.tradefed.result.TestDescription;
161 TestDescription testDescription, HashMap<String, Metric> metrics) { in writeTestMetrics()
297 public void testEnded(TestDescription testDescription, HashMap<String, Metric> metrics) { in testEnded()
/test/suite_harness/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/targetprep/
DApkInstrumentationPreparer.java30 import com.android.tradefed.result.TestDescription;
163 for (Entry<TestDescription, TestResult> results : result.getTestResults().entrySet()) { in instrument()
DMediaPreparer.java41 import com.android.tradefed.result.TestDescription;
622 public void testEnded(TestDescription test, HashMap<String, Metric> metrics) { in testEnded()
630 public void testFailed(TestDescription test, String trace) { in testFailed()
/test/catbox/report/src/com/android/catbox/result/
DJsonResultReporter.java41 import com.android.tradefed.result.TestDescription;
331 public void testEnded(TestDescription testDescription, HashMap<String, Metric> metrics) { in testEnded()
/test/catbox/report/src/com/android/catbox/util/
DTestMetricsUtil.java26 import com.android.tradefed.result.TestDescription;
80 public void storeTestMetrics(TestDescription testDescription, Map<String, Metric> testMetrics) { in storeTestMetrics()