OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:JUnitToInvocationResultForwarder
(Results
1 - 4
of
4
) sorted by null
/tools/tradefederation/core/src/com/android/tradefed/testtype/
JUnitRunUtil.java
22
import com.android.tradefed.result.
JUnitToInvocationResultForwarder
;
50
JUnitToInvocationResultForwarder
resultForwarder =
51
new
JUnitToInvocationResultForwarder
(listener);
DeviceTestResult.java
20
import com.android.tradefed.result.
JUnitToInvocationResultForwarder
;
113
if (each instanceof
JUnitToInvocationResultForwarder
) {
114
((
JUnitToInvocationResultForwarder
) each)
125
if (!metrics.isEmpty() && each instanceof
JUnitToInvocationResultForwarder
) {
126
((
JUnitToInvocationResultForwarder
) each).endTest(test, metrics);
/tools/tradefederation/core/src/com/android/tradefed/result/
JUnitToInvocationResultForwarder.java
40
public class
JUnitToInvocationResultForwarder
implements TestListener {
44
public
JUnitToInvocationResultForwarder
(ITestInvocationListener invocationListener) {
49
public
JUnitToInvocationResultForwarder
(List<ITestInvocationListener> invocationListeners) {
/tools/tradefederation/core/tests/src/com/android/tradefed/result/
JUnitToInvocationResultForwarderTest.java
41
/** Unit tests for {@link
JUnitToInvocationResultForwarder
}. */
46
private
JUnitToInvocationResultForwarder
mForwarder;
51
mForwarder = new
JUnitToInvocationResultForwarder
(mListener);
70
* Test method for {@link
JUnitToInvocationResultForwarder
#addFailure(junit.framework.Test,
86
/** Test method for {@link
JUnitToInvocationResultForwarder
#endTest(junit.framework.Test)}. */
100
/** Test method for {@link
JUnitToInvocationResultForwarder
#startTest(junit.framework.Test)}. */
113
* Test method for {@link
JUnitToInvocationResultForwarder
#startTest(junit.framework.Test)} when
Completed in 310 milliseconds