/test/suite_harness/common/host-side/tradefed/tests/src/com/android/compatibility/common/tradefed/testtype/ |
D | TestStub.java | 22 import com.android.tradefed.result.TestDescription; 55 protected List<TestDescription> mShardedTestToRun; 64 TestDescription tid = new TestDescription("TestStub", "test1"); in testAttempt() 70 TestDescription tid2 = new TestDescription("TestStub", "test2"); in testAttempt() 75 TestDescription tid3 = new TestDescription("TestStub", "test3"); in testAttempt() 109 for (TestDescription tid : mShardedTestToRun) { in run() 114 TestDescription tid = mShardedTestToRun.get(0); in run() 120 TestDescription tid = new TestDescription("TestStub", "failed" + mShardIndex); in run()
|
D | SimpleTestStub.java | 22 import com.android.tradefed.result.TestDescription; 56 TestDescription tid = new TestDescription("TestStub", "test1"); in run()
|
D | JarHostTestTest.java | 29 import com.android.tradefed.result.TestDescription; 233 TestDescription tid = new TestDescription("com.android.compatibility.common.tradefed." in testJarHostMetrics()
|
/test/vts/harnesses/tradefed/tests/src/com/android/tradefed/testtype/ |
D | VtsMultiDeviceTestResultParserTest.java | 19 import com.android.tradefed.result.TestDescription; 72 TestDescription test1 = new TestDescription(RUN_NAME, TEST_NAME_2); in testRunTimeoutInput() 77 TestDescription test2 = new TestDescription(RUN_NAME, TEST_NAME_1); in testRunTimeoutInput() 101 TestDescription test1 = new TestDescription(RUN_NAME, TEST_NAME_2); in testRunNormalInput() 105 TestDescription test2 = new TestDescription(RUN_NAME, TEST_NAME_1); in testRunNormalInput() 221 TestDescription test1 = new TestDescription(RUN_NAME, TEST_NAME_1); in testNormalSummary() 225 TestDescription test2 = new TestDescription(RUN_NAME, TEST_NAME_2); in testNormalSummary() 246 TestDescription test1 = new TestDescription(RUN_NAME, TEST_NAME_1); in testClassErrorSummary()
|
D | VtsFuzzTestResultParserTest.java | 20 import com.android.tradefed.result.TestDescription; 80 (TestDescription) EasyMock.anyObject(), (Map<String, String>) EasyMock.anyObject()); in testParsePassedFile() 96 (TestDescription) EasyMock.anyObject(), (String) EasyMock.anyObject()); in testParseFailedFile() 98 (TestDescription) EasyMock.anyObject(), (Map<String, String>) EasyMock.anyObject()); in testParseFailedFile()
|
/test/suite_harness/common/host-side/tradefed/tests/src/com/android/compatibility/common/tradefed/result/ |
D | ConsoleReporterTest.java | 26 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()
|
D | MetadataReporterTest.java | 27 import com.android.tradefed.result.TestDescription; 119 TestDescription test1 = new TestDescription(CLASS, METHOD_1); in runTests() 124 TestDescription test2 = new TestDescription(CLASS, METHOD_2); in runTests() 129 TestDescription test3 = new TestDescription(CLASS, METHOD_3); in runTests() 135 TestDescription test4 = new TestDescription(CLASS, METHOD_3); in runTests()
|
D | ResultReporterTest.java | 35 import com.android.tradefed.result.TestDescription; 147 TestDescription test1 = new TestDescription(CLASS, METHOD_1); in testResultReporting() 150 TestDescription test2 = new TestDescription(CLASS, METHOD_2); in testResultReporting() 153 TestDescription test3 = new TestDescription(CLASS, METHOD_3); in testResultReporting() 190 TestDescription test = new TestDescription(CLASS, methods[i]); in makeTestRun() 266 TestDescription test1 = new TestDescription(CLASS, METHOD_1); in testRetry() 270 TestDescription test2 = new TestDescription(CLASS, METHOD_2); in testRetry() 326 TestDescription test2 = new TestDescription(CLASS, METHOD_2); in testRetryCanSetDone() 365 TestDescription test2 = new TestDescription(CLASS, METHOD_2); in testRetryCannotSetDone() 385 TestDescription test1 = new TestDescription(CLASS, METHOD_1); in testResultReporting_moduleNotDone() [all …]
|
/test/suite_harness/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/result/ |
D | ModuleListener.java | 25 import com.android.tradefed.result.TestDescription; 73 public void testStarted(TestDescription test) { in testStarted() 82 public void testEnded(TestDescription test, HashMap<String, Metric> metrics) { in testEnded() 91 public void testIgnored(TestDescription test) { in testIgnored() 100 public void testFailed(TestDescription test, String trace) { in testFailed() 109 public void testAssumptionFailure(TestDescription test, String trace) { in testAssumptionFailure()
|
D | ConsoleReporter.java | 27 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()
|
D | MetadataReporter.java | 28 import com.android.tradefed.result.TestDescription; 102 public void testStarted(TestDescription test) { in testStarted() 111 public void testFailed(TestDescription test, String trace) { in testFailed() 119 public void testIgnored(TestDescription test) { in testIgnored() 127 public void testAssumptionFailure(TestDescription test, String trace) { in testAssumptionFailure() 135 public void testEnded(TestDescription test, HashMap<String, Metric> testMetrics) { in testEnded() 177 private static String buildTestId(TestDescription test) { in buildTestId()
|
D | ResultReporter.java | 57 import com.android.tradefed.result.TestDescription; 358 public void testStarted(TestDescription test) { in testStarted() 371 public void testEnded(TestDescription test, HashMap<String, Metric> metrics) { in testEnded() 401 public void testIgnored(TestDescription test) { in testIgnored() 409 public void testFailed(TestDescription test, String trace) { in testFailed() 417 public void testAssumptionFailure(TestDescription test, String trace) { in testAssumptionFailure()
|
/test/vts/harnesses/tradefed/src/com/android/tradefed/testtype/ |
D | VtsMultiDeviceTestResultParser.java | 21 import com.android.tradefed.result.TestDescription; 53 TestDescription mCurrentTestId; 58 private Map<TestDescription, String> mTestResultCache; 256 mCurrentTestId = new TestDescription(mTestClass, mCurrentTestName); in registerTest() 319 for (Entry<TestDescription, String> test : mTestResultCache.entrySet()) { in completeTestRun() 422 TestDescription TestDescription = new TestDescription(testClass, testName); in processJsonFile() local 426 listener.testStarted(TestDescription, beginTime); in processJsonFile() 442 listener.testFailed(TestDescription, in processJsonFile() 446 listener.testFailed(TestDescription, in processJsonFile() 452 listener.testEnded(TestDescription, endTime, Collections.emptyMap()); in processJsonFile()
|
D | VtsFuzzTestResultParser.java | 24 import com.android.tradefed.result.TestDescription; 53 private TestDescription mTestId; 108 mTestId = new TestDescription("fuzzer", mTestRunName); in processNewLines()
|
D | VtsMultiDeviceTest.java | 32 import com.android.tradefed.result.TestDescription;
|
/test/suite_harness/common/host-side/tradefed/tests/src/com/android/compatibility/common/tradefed/result/suite/ |
D | CertificationChecksumHelperTest.java | 23 import com.android.tradefed.result.TestDescription; 82 for (Entry<TestDescription, TestResult> entry : run1.getTestResults().entrySet()) { in testCreateChecksum() 86 for (Entry<TestDescription, TestResult> entry : run2.getTestResults().entrySet()) { in testCreateChecksum() 95 TestDescription test = new TestDescription("com.class.path", "testMethod" + i); in createFakeResults()
|
/test/vts/tools/vts-core-tradefed/src/com/android/tradefed/testtype/binary/ |
D | KernelTargetTest.java | 23 import com.android.tradefed.result.TestDescription; 53 CommandResult result, ITestInvocationListener listener, TestDescription description) { in checkCommandResult()
|
/test/suite_harness/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/result/suite/ |
D | CertificationChecksumHelper.java | 20 import com.android.tradefed.result.TestDescription; 175 for (Entry<TestDescription, TestResult> caseResult in addResults() 188 Entry<TestDescription, TestResult> testResult, TestRunResult moduleResult, in containsTestResult() argument 214 Entry<TestDescription, TestResult> testResult, TestRunResult module, in generateTestResultSignature() argument
|
/test/suite_harness/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/testtype/ |
D | FailureListener.java | 25 import com.android.tradefed.result.TestDescription; 68 public void testFailed(TestDescription test, String trace) { in testFailed()
|
/test/suite_harness/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/targetprep/ |
D | ApkInstrumentationPreparer.java | 30 import com.android.tradefed.result.TestDescription; 138 for (Entry<TestDescription, TestResult> results : result.getTestResults().entrySet()) { in instrument()
|
D | MediaPreparer.java | 34 import com.android.tradefed.result.TestDescription; 472 public void testEnded(TestDescription test, HashMap<String, Metric> metrics) { in testEnded() 480 public void testFailed(TestDescription test, String trace) { in testFailed()
|
/test/suite_harness/common/host-side/tradefed/tests/src/com/android/compatibility/common/tradefed/presubmit/ |
D | IntegrationTest.java | 37 import com.android.tradefed.result.TestDescription; 259 public void testEnded(TestDescription test, long endTime, in testSingleModuleRun_checkMetadata()
|