Searched refs:tid2 (Results 1 – 4 of 4) sorted by relevance
/tools/tradefederation/core/tests/src/com/android/tradefed/result/ddmlib/ |
D | TestRunToTestInvocationForwarderTest.java | 51 TestIdentifier tid2 = new TestIdentifier("class", "test2"); in testForwarding() local 52 TestDescription td2 = new TestDescription(tid2.getClassName(), tid2.getTestName()); in testForwarding() 73 mForwarder.testStarted(tid2); in testForwarding() 74 mForwarder.testFailed(tid2, "I failed"); in testForwarding() 75 mForwarder.testEnded(tid2, new HashMap<>()); in testForwarding() 85 TestIdentifier tid2 = new TestIdentifier("class", "null"); in testForwarding_null() local 93 String.format(TestRunToTestInvocationForwarder.ERROR_MESSAGE_FORMAT, tid2)); in testForwarding_null() 105 mForwarder.testStarted(tid2); in testForwarding_null() 106 mForwarder.testFailed(tid2, "I failed"); in testForwarding_null() 107 mForwarder.testEnded(tid2, new HashMap<>()); in testForwarding_null()
|
/tools/tradefederation/core/tests/src/com/android/tradefed/testtype/suite/ |
D | TestSuiteStub.java | 104 TestDescription tid2 = new TestDescription("TestStub", "test2"); in testAttempt() local 105 listener.testStarted(tid2); in testAttempt() 111 tid2.toString() + "-file", in testAttempt() 115 listener.testEnded(tid2, new HashMap<String, Metric>()); in testAttempt()
|
D | ModuleListenerTest.java | 98 TestDescription tid2 = new TestDescription("class", "test" + i); in testInternalRerun() local 99 mListener.testStarted(tid2); in testInternalRerun() 100 mListener.testEnded(tid2, new HashMap<String, Metric>()); in testInternalRerun()
|
/tools/tradefederation/core/tests/src/com/android/tradefed/testtype/ |
D | HostTestTest.java | 1856 TestDescription tid2 = 1859 mListener.testStarted(tid2); 1860 mListener.testEnded(tid2, new HashMap<String, Metric>()); 1963 TestDescription tid2 = new TestDescription(SuccessTestCase.class.getName(), "testPass2"); 1968 new TestDescription[] {tid2, tid3, tid4}); 2039 TestDescription tid2 = new TestDescription(Junit4TestClass.class.getName(), "testPass5"); 2040 mListener.testStarted(EasyMock.eq(tid2)); 2041 mListener.testEnded(EasyMock.eq(tid2), (HashMap<String, Metric>) EasyMock.anyObject()); 2083 TestDescription tid2 = new TestDescription(Junit4TestClass.class.getName(), "testPass5"); 2084 mListener.testStarted(EasyMock.eq(tid2)); [all …]
|